This enumeration specifies all the supported types of TIFF photometric interpretations.
Syntax
'Declaration
Public Enum ImGearPhotoInterpretations
Inherits System.Enum
public enum ImGearPhotoInterpretations : System.Enum
__value public enum ImGearPhotoInterpretations : public System.Enum
public enum class ImGearPhotoInterpretations : public System.Enum
Members
Member | Value | Description |
BLACKZERO | 1 | Black is zero. For bilevel and grayscale images: 0 is imaged as black. 2**BitsPerSample-1 is imaged as white. |
CFA | -32733 | Color Filter Array photometric interpretation. |
CIELAB | 8 | CIE Lab (using TIFF format for storing a and b values). |
CMYK | 5 | CMYK photometric interpretation. |
ICC_CIELAB | 9 | CIE Lab (using ICC format for storing a and b values). |
PALETTE | 3 | Palette color photometric interpretation. |
RGB | 2 | RGB photometric interpretation. |
TRANSPARENCY | 4 | Transparency photometric interpretation. |
WHITEZERO | 0 | White is zero. For bilevel and grayscale images: 0 is imaged as white. 2**BitsPerSample-1 is imaged as black. |
YCBCR | 6 | YCbCr photometric interpretation. |
YUV | -30644 | YUV photometric interpretation. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
ImageGear.Formats.TIF.ImGearPhotoInterpretations
See Also