fontforge
v0.0.4
Published
A Node.js wrapper for fontforge
Downloads
1,818
Readme
node-fontforge
A Node.js wrapper for FontForge
Installation
npm install fontforge
Usage
getName(src)
getName() returns the name of the font stored in src
import { getName } from 'fontforge';
// Contains 'MyFont'
const src = 'MyFont-File.ttf';
const name = getName(src);
// Oututs: 'MyFont'
console.log(name);