Created
January 21, 2016 13:28
-
-
Save tujlaky/6fb408ce26c048c1a3d3 to your computer and use it in GitHub Desktop.
Convert ttf fonts to otf
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
#!/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