pdfrx_web
    Preparing search index...

    Interface PdfImageContent

    An image placed by a PDF affine matrix. Binary source buffers are transferred to the worker and become detached from the caller.

    interface PdfImageContent {
        kind: "image";
        opacity?: number;
        source: PdfPageImageSource;
        transform: PdfMatrix;
    }
    Index
    kind: "image"

    Discriminant for an image object.

    opacity?: number

    Range 0 through 1. Non-opaque values currently require a pixels source.

    JPEG bytes or decoded pixels. JPEG avoids caller-side decoding.

    transform: PdfMatrix

    Maps the image's unit square into PDF page space.