pdfrx_web
    Preparing search index...

    Interface PdfEmojiRun

    A rasterized color emoji or other inline RGBA glyph image.

    width and height are the placed size in page points. pixelWidth and pixelHeight describe the tightly packed pixel buffer; they default to the placed dimensions for 1:1 caller-produced images. The buffer is transferred.

    interface PdfEmojiRun {
        height: number;
        pixelHeight?: number;
        pixels: Uint8Array;
        pixelWidth?: number;
        width: number;
        x: number;
        y: number;
    }
    Index
    height: number
    pixelHeight?: number

    Pixel height of pixels. Defaults to height.

    pixels: Uint8Array
    pixelWidth?: number

    Pixel width of pixels. Defaults to width.

    width: number
    x: number
    y: number