Skip to content

Instantly share code, notes, and snippets.

@VRDate
Forked from endel/conver.pe
Created July 21, 2019 15:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VRDate/d117d2c43c7fd1e572d01f7100685de8 to your computer and use it in GitHub Desktop.
Save VRDate/d117d2c43c7fd1e572d01f7100685de8 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