ExifValueType Enum
Definition
- Namespace
- GleamTech.ImageUltimate
- Assembly
- GleamTech.ImageUltimate.dll
Defines the types of an exif entry's value.
public enum ExifValueType
Fields
| Name | Value | Description |
|---|---|---|
| Unknown | 0 |
Unknown |
| Byte | 1 |
Byte (maps to byte) |
| Ascii | 2 |
Ascii (maps to string) |
| Short | 3 |
Short (maps to ushort) |
| Long | 4 |
Long (maps to uint) |
| Rational | 5 |
Rational |
| SignedByte | 6 |
SignedByte (maps to sbyte) |
| Undefined | 7 |
Undefined (maps to byte[]) |
| SignedShort | 8 |
SignedShort (maps to short) |
| SignedLong | 9 |
SignedLong (maps to int) |
| SignedRational | 10 |
Signed rational |
| SingleFloat | 11 |
SingleFloat (maps to float) |
| DoubleFloat | 12 |
DoubleFloat (maps to double) |