pdfrx_web
    Preparing search index...

    Variable PdfFontCharsetConst

    PdfFontCharset: {
        ansi: 0;
        arabic: 178;
        chineseBig5: 136;
        cyrillic: 204;
        default: 1;
        easternEuropean: 238;
        gb2312: 134;
        greek: 161;
        hangul: 129;
        hebrew: 177;
        shiftJis: 128;
        symbol: 2;
        thai: 222;
        vietnamese: 163;
    } = ...

    Named PDFium font charset ids (LOGFONT lfCharSet values), mirroring pdfrx's PdfFontCharset enum. Use these to interpret PdfFontQuery.charset:

    if (query.charset === PdfFontCharset.shiftJis) { … } // Japanese
    

    Type Declaration

    • Readonlyansi: 0

      Windows-1252 / Latin-1.

    • Readonlyarabic: 178
    • ReadonlychineseBig5: 136

      Chinese Traditional (Big5).

    • Readonlycyrillic: 204
    • Readonlydefault: 1

      System default charset.

    • ReadonlyeasternEuropean: 238
    • Readonlygb2312: 134

      Chinese Simplified (GB2312).

    • Readonlygreek: 161
    • Readonlyhangul: 129

      Korean (Hangul).

    • Readonlyhebrew: 177
    • ReadonlyshiftJis: 128

      Japanese (Shift-JIS).

    • Readonlysymbol: 2

      Symbol font charset.

    • Readonlythai: 222
    • Readonlyvietnamese: 163