Skip to content

Instantly share code, notes, and snippets.

@m13253
Forked from endel/conver.pe
Created April 28, 2017 09:39
Show Gist options
  • Save m13253/87de9a8d5b87f537d82e70d35d7fab69 to your computer and use it in GitHub Desktop.
Save m13253/87de9a8d5b87f537d82e70d35d7fab69 to your computer and use it in GitHub Desktop.
FontForge script to convert .ttf file to its webfont variations (.otf, .svg, .woff, .woff2)
#!/usr/local/bin/fontforge
Open($1)
Generate($1:r + ".otf")
Generate($1:r + ".svg")
Generate($1:r + ".woff")
Generate($1:r + ".woff2")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment