pdfrx_web
    Preparing search index...

    Interface RawPageText

    Raw per-page text as returned by the engine, before flow analysis: the concatenated character stream plus one rect (PDF page coordinates) per UTF-16 code unit. Input to formatText.

    interface RawPageText {
        charRects: PdfRect[];
        fullText: string;
    }
    Index
    charRects: PdfRect[]

    One rect per UTF-16 code unit of fullText, in PDF page coordinates (y-up).

    fullText: string