Skip to content

Instantly share code, notes, and snippets.

@tujlaky
Created January 21, 2016 13:28
Show Gist options
  • Save tujlaky/6fb408ce26c048c1a3d3 to your computer and use it in GitHub Desktop.
Save tujlaky/6fb408ce26c048c1a3d3 to your computer and use it in GitHub Desktop.
Convert ttf fonts to otf
#!/bin/sh
# Convert an OTF font into TTF an EOT formats.
otfFont="$1.otf"
ttfFont="$1.ttf"
fontforge -c '
import fontforge
font = fontforge.open("'$ttfFont'")
font.generate("'$otfFont'")
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment