pdfrx_web
    Preparing search index...

    Interface PdfPageContentSpec

    One page to create. Dimensions and object coordinates are PDF points (1/72 inch), with a bottom-left origin and a y-axis pointing up.

    Objects are painted in array order: a later object appears over an earlier object where they overlap.

    interface PdfPageContentSpec {
        height: number;
        objects: PdfPageContentObject[];
        width: number;
    }
    Index
    height: number

    Page height in points; must be finite and greater than zero.

    Back-to-front page objects. An empty array creates a blank page.

    width: number

    Page width in points; must be finite and greater than zero.