Skip to content

Instantly share code, notes, and snippets.

@skoji
Created February 6, 2017 13:50
Show Gist options
  • Save skoji/cd35ff349c452b105b241fcc140a5ebd to your computer and use it in GitHub Desktop.
Save skoji/cd35ff349c452b105b241fcc140a5ebd to your computer and use it in GitHub Desktop.
Convert all fonts opened in Glyphs to TTF
# 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