VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles.Tiff Namespace / PhotometricInterpretation Enumeration
Syntax Members Hierarchy Requirements SeeAlso
In This Topic
    PhotometricInterpretation Enumeration
    In This Topic
    Specifies available photometric interpretations for TIFF image.
    Syntax
    'Declaration
    
    Public Enum PhotometricInterpretation
       Inherits System.Enum
    
    
    public enum PhotometricInterpretation : System.Enum
    
    
    __value public enum PhotometricInterpretation : public System.Enum
    
    
    public enum class PhotometricInterpretation : public System.Enum
    
    
    Members
    MemberDescription
    WhiteIsZeroFor bilevel and grayscale images: 0 is imaged as white.
    BlackIsZeroFor bilevel and grayscale images: 0 is imaged as black.
    RgbRGB. RGB value of (0,0,0) represents black, and (255,255,255) represents white, assuming 8-bit components. The components are stored in the indicated order: first Red, then Green, then Blue.
    PalettePalette color. In this model, a color is described with a single component. The value of the component is used as an index into the red, green and blue curves in the ColorMap field to retrieve an RGB triplet that defines the color. When PhotometricInterpretation=3 is used, ColorMap must be present and SamplesPerPixel must be 1.
    TransparencyMaskTransparency Mask. This means that the image is used to define an irregularly shaped region of another image in the same TIFF file. SamplesPerPixel and BitsPerSample must be 1. PackBits compression is recommended. The 1-bits define the interior of the region; the 0-bits define the exterior of the region.
    CmykCMYK.
    YCbCrYCbCr.
    CIELabCIE L*a*b*.
    ICCLabCIE L*a*b*, alternate encoding also known as ICC L*a*b*.
    ITULabCIE L*a*b*, alternate encoding also known as ITU L*a*b*, defined in ITU-T Rec. T.42, used in the TIFF-F and TIFF-FX standard (RFC 2301).
    CFACFA (Color Filter Array).
    LinearRawLinearRaw.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Vintasoft.Imaging.Codecs.ImageFiles.Tiff.PhotometricInterpretation

    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also