Add all new font files.

This commit is contained in:
2024-03-28 15:56:20 -04:00
parent 7734de9fa4
commit ee0bef39b3
85 changed files with 199160 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
import sys
sys.path.append("/usr/local/lib/python3.8/site-packages")
import fontforge
gn=sys.argv[1]
f = fontforge.open("../TT_ita.sfd")
f.ascent+=300
f.descent+=300
g=f[gn]
if g.width == 0:
g.width = f["A"].width
g.export("svgs/{}.svg".format(gn))