forked from Spacefish/NeoSolve.ImageSharp.AVIF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAVIFInfo.cs
More file actions
21 lines (20 loc) · 720 Bytes
/
Copy pathAVIFInfo.cs
File metadata and controls
21 lines (20 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace NeoSolve.ImageSharp.AVIF;
public class AVIFInfo
{
public int Width { get; set; }
public int Height { get; set; }
public int BitDepth { get; set; }
public string Format { get; set; }
public int ChromaSamPos { get; set; }
public string Alpha { get; set; }
public string Range { get; set; }
public int ColorPrimaries { get; set; }
public int TransferChar { get; set; }
public int MatrixCoeffs { get; set; }
public string IccProfile { get; set; }
public string XmpMetadata { get; set; }
public string ExifMetadata { get; set; }
public string Transformations { get; set; }
public string Progressive { get; set; }
public string GainMap { get; set; }
}