meo-skia-canvas
    Preparing search index...

    Interface FontFamily

    What one family offers, as reported by FontLibrary.family. The three lists describe the faces found under that name, system fonts and registered ones together.

    🧪 Not in the HTML Canvas standard.

    interface FontFamily {
        family: string;
        styles: string[];
        weights: number[];
        widths: string[];
    }
    Index
    family: string

    The name asked for.

    styles: string[]

    Slants available, e.g. ["normal", "italic"].

    weights: number[]

    CSS numeric weights available, e.g. [400, 700].

    widths: string[]

    CSS width keywords available, e.g. ["normal", "condensed"].