Font Converters

Desktop fonts in, web fonts out — with the licensing-sensitive part done where it belongs: on your machine.

Serve WOFF2 — every modern browser reads it and it's ~50–60% smaller than the TTF. Reach for WOFF only when an old-IE fleet is a hard requirement. And because fonts are licensed software, convert them locally: uploading a commercial font to a converter server is exactly the kind of redistribution most EULAs prohibit.

The licensing angle other converters skip

Web-font generators traditionally work by upload: your font file — a licensed good — gets copied to someone's server to be repackaged. Converters here run the encoders in your browser instead (Google's woff2 compiled to WebAssembly, and a spec-exact WOFF writer), so the file never leaves your machine. That doesn't grant web-embedding rights your license lacks — check your EULA — but it does mean the conversion itself creates no third-party copy. Each output is also test-loaded with the FontFace API before you download it, so "converted" means "verified to load in a real browser", not "probably fine".

WOFF2WOFF
Size vs TTF~40–50%~60–70%
Browser floor2016+ (all modern)IE9 (2011)
Use todayThe default choiceLegacy fleets only