-
-
Save skoji/cd35ff349c452b105b241fcc140a5ebd to your computer and use it in GitHub Desktop.
Convert all fonts opened in Glyphs to TTF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Write this in Macro Panel and click on the Run button | |
for myFont in Glyphs.fonts: | |
for ins in myFont.instances: | |
print "Exporting:", ins.familyName | |
ins.generate(Format='TTF',AutoHint=False, RemoveOverlap=False,FontPath='path_to_the_converted_fonts/') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment