Interface IFontLoader

interface IFontLoader {
    failed: FontInfo[];
    loaded: FontInfo[];
    isLoading(): boolean;
    load(fonts): Promise<FontInfo[]>;
    loadAll(): Promise<FontInfo[]>;
}

Properties

Methods

Properties

failed: FontInfo[]

読み込みに失敗したフォントの一覧 / List of fonts failed to load

loaded: FontInfo[]

読み込まれたフォントの一覧 / List of fonts succeeded to load

Methods

  • 読み込みプロセスの有無 / Whether fonts are currently loaded or not

    Returns boolean

  • フォントを読み込む

    Load fonts

    Parameters

    • fonts: (string | FontInfo)[]

      フォント名の一覧 / List of font family names

    Returns Promise<FontInfo[]>

    読み込めたフォントの一覧 / List of fonts suceeded to load

  • 利用可能なすべてのフォントを読み込む

    Load all available fonts

    Returns Promise<FontInfo[]>

    読み込めたフォントの一覧 / List of fonts suceeded to load