pdfrx_web
    Preparing search index...

    Interface PdfTextContent

    A group of text runs and optional rasterized emoji embedded as page content.

    interface PdfTextContent {
        emojiRuns?: PdfEmojiRun[];
        kind: "text";
        runs: PdfTextRun[];
    }
    Index
    emojiRuns?: PdfEmojiRun[]

    RGBA images used for glyphs that cannot be represented by an embedded PDF font.

    kind: "text"

    Discriminant for a text object group.

    runs: PdfTextRun[]

    Independently positioned text runs, emitted in order.