Skip to content

Instantly share code, notes, and snippets.

@endel
Last active October 28, 2015 10:10
Show Gist options
  • Save endel/5a79e06bb796725119fe to your computer and use it in GitHub Desktop.
Save endel/5a79e06bb796725119fe to your computer and use it in GitHub Desktop.
FontForge: Straightforward way to convert .ttf into multiple webfont formats
#!/usr/local/bin/fontforge
Open($1)
Generate($1:r + ".otf")
Generate($1:r + ".svg")
Generate($1:r + ".woff")
Generate($1:r + ".woff2")
chmod +x convert.pe
./conver.pe Your-Font.ttf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment