blob: 4cd46f9ebe62f1b9ec457160b4e96229658ee243 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Fontmake compiles fonts from various sources such as
UFO, glyph and designspace into binaries such as
OTF and TTF. You can use it to create static instances
and variable fonts.
To generate OpenType fonts run
fontmake -u MyFontFamily/Regular.ufo
To generate Truetype fonts run
fontmake -u MyFontFamily/Regular.ufo -o ttf
To save the generated font in a different
directory run
fontmake -u MyFontFamily.ufo -o ttf --output-dir $DIR/ttf
|