Enum TiffPhotometricInterpretation
- Namespace
- SixLabors.ImageSharp.Formats.Tiff.Constants
- Assembly
- SixLabors.ImageSharp.dll
Enumeration representing the photometric interpretation formats defined by the Tiff file-format.
public enum TiffPhotometricInterpretation : ushort
Fields
BlackIsZero = 1
Bilevel and grayscale: 0 is imaged as black. The maximum value is imaged as white.
CieLab = 8
1976 CIE L*a*b* (see Section 23 of the TIFF 6.0 specification).
Not supported by the TiffEncoder.
ColorFilterArray = 32803
Color Filter Array (see the DNG specification).
Not supported by the TiffEncoder.
IccLab = 9
ICC L*a*b* (see TIFF Specification, supplement 1).
Not supported by the TiffEncoder.
ItuLab = 10
ITU L*a*b* (see RFC2301).
Not supported by the TiffEncoder.
LinearRaw = 34892
Linear Raw (see the DNG specification).
Not supported by the TiffEncoder.
PaletteColor = 3
Palette Color.
Rgb = 2
RGB image.
Separated = 5
Separated: usually CMYK (see Section 16 of the TIFF 6.0 specification).
Not supported by the TiffEncoder.
TransparencyMask = 4
A transparency mask.
Not supported by the TiffEncoder.
WhiteIsZero = 0
Bilevel and grayscale: 0 is imaged as white. The maximum value is imaged as black.
Not supported by the TiffEncoder.
YCbCr = 6
YCbCr (see Section 21 of the TIFF 6.0 specification).
Not supported by the TiffEncoder.