ImageGear .NET v25.2 - Updated
ImageGear.OCR Assembly / ImageGear.OCR Namespace / ImGearOCRImage Class / BitsPerPixel Property




In This Topic
    BitsPerPixel Property
    In This Topic
    Gets number of bits per pixel.
    Syntax
    'Declaration
     
    Public MustOverride ReadOnly Property BitsPerPixel As Integer
    'Usage
     
    Dim instance As ImGearOCRImage
    Dim value As Integer
     
    value = instance.BitsPerPixel
    public abstract int BitsPerPixel {get;}
    public: __property abstract int get_BitsPerPixel();
    public:
    abstract property int BitsPerPixel {
       int get();
    }

    Property Value

    Integer value.
    Remarks
    Number of bits per pixel used to store the image in the recognition engine. Also known as image color depth.

    This may differ from the original input image's color depth due to processing steps. For example, a 24-bit RGB image could be reduced to bitonal (1-bit black and white) depending on preprocessing settings.

    See Also