summarylogtreecommitdiffstats
path: root/convert.ff
blob: 6709194e18f48e61eb1d0e19101f1b5994642c3d (plain)
1
2
3
4
5
6
7
#!/usr/local/bin/fontforge
# Quick and dirty hack: converts a font to truetype (.ttf)
Print("Opening "+$1);
Open($1);
Print("Saving "+$1:r+".ttf");
Generate($1:r+".ttf");
Quit(0);