Copy

FontRegistration

Embeddable TrueType font registered in a renderer-owned WASM context.

ON_THIS_PAGE
  1. Signature
  2. Properties

Embeddable TrueType font registered in a renderer-owned WASM context.

Signature

export interface FontRegistration {
    family: string;
    data: ArrayBuffer | Uint8Array;
    weight?: number | "normal" | "bold";
    style?: "normal" | "italic";
}
SOURCE:255

Properties

PropertyTypeRequiredRead onlyDefaultDescription
familystringYesNoNoneCSS family name used during font resolution.
dataArrayBuffer | Uint8ArrayYesNoNoneComplete TrueType font bytes, copied into the native context.
weightnumber | "normal" | "bold"NoNo400CSS font weight. Defaults to 400.
style"normal" | "italic"NoNonormalCSS font style. Defaults to normal.
ON_THIS_PAGE
  1. Signature
  2. Properties
html2realpdf documentationCopyright © Imggion
DOCUMENTATION_TREE