Enum ExifDataType
Specifies exif data types.
Namespace: SixLabors.ImageSharp.Metadata.Profiles.Exif
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum ExifDataType
Fields
Name | Description |
---|---|
Ascii | An 8-bit byte containing one 7-bit ASCII code. The final byte is terminated with NULL.
|
Byte | An 8-bit unsigned integer. |
DoubleFloat | A 64-bit double precision floating point value. |
Ifd | Reference to an IFD (32-bit (4-byte) unsigned integer). |
Ifd8 | Reference to an IFD (64-bit (8-byte) unsigned integer). |
Long | A 32-bit (4-byte) unsigned integer. |
Long8 | A 64-bit (8-byte) unsigned integer. |
Rational | Two LONGs. The first LONG is the numerator and the second LONG expresses the denominator. |
Short | A 16-bit (2-byte) unsigned integer. |
SignedByte | An 8-bit signed integer. |
SignedLong | A 32-bit (4-byte) signed integer (2's complement notation). |
SignedLong8 | A 64-bit (8-byte) signed integer (2's complement notation). |
SignedRational | Two SLONGs. The first SLONG is the numerator and the second SLONG is the denominator. |
SignedShort | A 16-bit (2-byte) signed integer. |
SingleFloat | A 32-bit single precision floating point value. |
Undefined | An 8-bit byte that can take any value depending on the field definition. |
Unknown | Unknown |