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