forked from fontworks-fonts/RocknRoll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.py
44 lines (37 loc) · 1.56 KB
/
build.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from fontTools.ttLib.ttFont import newTable
from fontmake import __main__
from fontTools.ttLib import TTFont, newTable
import shutil, subprocess, glob
from pathlib import Path
print ("[RocknRoll] Generating TTFs")
__main__.main(("-g","sources/RocknRollOne.glyphs", "-o","ttf",))
for font in Path("master_ttf").glob("*.ttf"):
modifiedFont = TTFont(font)
print ("["+str(font).split("/")[1][:-4]+"] Adding stub DSIG")
modifiedFont["DSIG"] = newTable("DSIG") #need that stub dsig
modifiedFont["DSIG"].ulVersion = 1
modifiedFont["DSIG"].usFlag = 0
modifiedFont["DSIG"].usNumSigs = 0
modifiedFont["DSIG"].signatureRecords = []
print ("["+str(font).split("/")[1][:-4]+"] Making other changes")
modifiedFont["name"].addMultilingualName({'ja':'ロックンロール One'}, modifiedFont, nameID = 1, windows=True, mac=False)
modifiedFont["name"].addMultilingualName({'ja':'Regular'}, modifiedFont, nameID = 2, windows=True, mac=False)
modifiedFont["head"].flags |= 1 << 3 #sets flag to always round PPEM to integer
modifiedFont.save("fonts/ttf/"+str(font).split("/")[1])
shutil.rmtree("instance_ufo")
shutil.rmtree("master_ufo")
shutil.rmtree("master_ttf")
for font in Path("fonts/ttf/").glob("*.ttf"):
print ("["+str(font).split("/")[2][:-4]+"] Autohinting")
fontName = str(font)
hintedName = fontName[:-4]+"-hinted.ttf"
subprocess.check_call(
[
"ttfautohint",
"--stem-width",
"nsn",
fontName,
hintedName,
]
)
shutil.move(hintedName, fontName)