Nutrient Web SDK
    Preparing search index...

    Interface SubsetFontInfo

    Information about a font that is embedded as a subset (only originally-used glyphs are present), which means edits that add new characters may render with a fallback face. Returned by getSubsetFonts().

    interface SubsetFontInfo {
        demangledName: string;
        originalName: string;
        pageIndex: number;
        textBlockId: string;
    }
    Index

    Properties

    demangledName: string

    Base font name with the subset prefix stripped (e.g. "Helvetica").

    originalName: string

    Full font name including the subset prefix (e.g. "ABCDEF+Helvetica").

    pageIndex: number

    Page the text block lives on.

    textBlockId: string

    The text block where the subset font was detected.