Skip to content

Instantly share code, notes, and snippets.

@gferreira
Created September 5, 2013 09:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gferreira/6447830 to your computer and use it in GitHub Desktop.
Save gferreira/6447830 to your computer and use it in GitHub Desktop.
quickly transfer all glyphs from the current font to another open font
# [h] quick transfer glyphs
src = CurrentFont()
dst = AllFonts().getFontsByStyleName('95')[0]
for g in src:
dst.insertGlyph(g)
dst.update()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment