pdfrx_web
    Preparing search index...

    Type Alias PdfMatrix

    PdfMatrix: readonly [number, number, number, number, number, number]

    PDF affine matrix [a, b, c, d, e, f], equivalent to:

    x' = a*x + c*y + e
    y' = b*x + d*y + f
    

    For an image, [width, 0, 0, height, x, y] places its unit square in an axis-aligned page rectangle. Matrices and coordinates use PDF's y-up space.