Parses font files of various formats (TTF, OTF, WOFF). Automatically detects the format and returns the appropriate parser.
const fontData = readFileSync('myfont.woff')const parser = parseFont(fontData)const descriptor = parser.getFontDescriptor() Copy
const fontData = readFileSync('myfont.woff')const parser = parseFont(fontData)const descriptor = parser.getFontDescriptor()
Parses font files of various formats (TTF, OTF, WOFF). Automatically detects the format and returns the appropriate parser.