VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles Namespace / ImagePage Class / SourceBitsPerPixel Property
Syntax Requirements SeeAlso
In This Topic
    SourceBitsPerPixel Property (ImagePage)
    In This Topic
    Gets the number of bits per pixel of image data of the image page.
    Syntax
    'Declaration
    
    Public Overridable ReadOnly Property SourceBitsPerPixel As System.Int32
    
    
    public virtual System.Int32 SourceBitsPerPixel { get; }
    
    
    public: __property virtual System.Int32 get_SourceBitsPerPixel();
    
    
    
    public:
    virtual property System.Int32 SourceBitsPerPixel { System.Int32 get(); }

    Property Value

    For 1-bpp black-white image this value will return 1.
    For 2-bpp palette/gray image this value will return 2.
    For 4-bpp palette/gray image this value will return 4.
    For 8-bpp palette/gray image this value will return 8.
    For 24-bpp RGB image this value will return 24.
    For 32-bpp ARGB image this value will return 32.
    For 48-bpp RGB image this value will return 48.
    For 64-bpp ARGB image this value will return 64.
    For 32-bpp CMYK image this value will return 32.
    Requirements

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

    See Also