DsPdfJS API - v9.1.0
    Preparing search index...

    Type Alias BilevelBitmapProperties

    Provides settings for creating a new instance of BilevelBitmap.

    type BilevelBitmapProperties = {
        initialValue?: number | boolean;
        lowerBitsFirst?: boolean;
        transparencyMask?: boolean;
        whiteIsZero?: boolean;
    }
    Index

    Properties

    initialValue?: number | boolean

    The optional value to initialize pixels of a BilevelBitmap (true is 1, false is 0).

    lowerBitsFirst?: boolean

    Specifies whether pixels with lower column indices are stored in the lower-order bits of the byte.

    transparencyMask?: boolean

    Indicates whether the image is used to define an alpha mask of another image.

    whiteIsZero?: boolean

    Indicates whether 0 represents white and 1 represents black (if true) or vice versa (if false).