WOFF to WOFF2 Converter
FileFlip converts WOFF to WOFF2 entirely inside your browser, using the font engine compiled to WebAssembly. The file is never uploaded to a server: it is read off your disk, converted on your own machine, and saved back by the browser. That means no file-size limit, no queue and no account.
How do I convert a WOFF file to WOFF2?#
- Drop your WOFF file onto the converter at the top of this page, or click it to pick one from your computer. You can add as many as you like.
- Leave the target set to WOFF2 and the conversion starts on its own. FileFlip downloads 0.7 MB of WebAssembly the first time and nothing after that, then runs the font engine on your own machine.
- Save the WOFF2 file. Your browser writes it straight to your downloads folder, because there was never a server holding it.
Does converting WOFF to WOFF2 lose quality?#
No. The WOFF to WOFF2 conversion copies the already-encoded streams into the new container without decoding them, so what comes out is bit-for-bit what went in. Only the wrapper changes, which is why it is also fast.
Is it safe to convert WOFF files online?#
Yes, because nothing is uploaded. FileFlip converts WOFF files inside the browser tab you already have open, using WebAssembly builds of the same engines a desktop converter would install. Your file is read from your own disk into the page's memory, and no request carrying it is ever made.
You do not have to take that on trust. Open your browser's network panel, run a conversion, and you will see the engine come down and your file go nowhere. There is no upload, no server-side copy, no retention window, and no account tied to what you converted.
How FileFlip works lists every engine, its version and its download size, and shows how to check for yourself that nothing leaves your machine.
What WOFF to WOFF2 actually does to the file#
Converting WOFF to WOFF2 runs on the font engine, downloads 0.7 MB of WebAssembly the first time and nothing after that, copies the encoded streams into the new container without re-encoding them, keeps hinting and kerning, and drops OpenType features.
| Engine | the font engine |
|---|---|
| Conversion path | One step: WOFF → WOFF2 |
| Downloaded to your browser | 0.7 MB, once, then cached by your browser |
| Quality | Lossless, repackaged rather than re-encoded |
| You get back | One file |
| Where it runs | On the page's own thread, so a very large file will make the tab wait |
What survives the conversion
| What is in the file | This conversion | Why |
|---|---|---|
| Hinting | Kept | Carried through into the converted file. |
| Kerning | Kept | Carried through into the converted file. |
| OpenType features | Dropped | The target format has nowhere to put it. |
Worth knowing before you start:
- this conversion runs on the page's own thread, so a large file will freeze the tab while it works
What is a WOFF file?#
A WOFF file wraps a TrueType or OpenType font in a compressed container built specifically for loading with @font-face on the web.
Serve WOFF when a site's browser support has to reach back further than WOFF2 covers, or as the fallback source in a @font-face src list.
Convert WOFF to WOFF2 as the primary web font and keep WOFF only as a fallback, since WOFF2 is smaller for the same font on every modern browser.
What is a WOFF2 file?#
A WOFF2 file wraps a TrueType or OpenType font in a Brotli-compressed container built for @font-face delivery on the web, replacing WOFF's older zlib compression.
Serve WOFF2 as the primary font format for any website, since it's the smallest option every current browser supports.
Convert away from WOFF2 only when a font needs to be installed on a desktop or opened by a font editor, since WOFF2 exists purely for web delivery.
WOFF to WOFF2 questions people ask#
Should I use WOFF or WOFF2 on my website?
WOFF2 compresses better than WOFF because it uses Brotli instead of zlib, and every browser still receiving updates supports it, so WOFF2 should be the primary format in a @font-face declaration. WOFF is worth keeping only as a fallback source for the handful of older browsers that never picked up WOFF2.
Why is WOFF smaller than a plain TTF file?
WOFF wraps the same TrueType or OpenType glyph data inside a zlib-compressed container, which typically shrinks the file by more than 40 percent. Decompression happens once when the browser loads the font, so the smaller download comes at essentially no runtime cost.
Can I install a WOFF file as a font on my computer?
Not directly. WOFF is a delivery format for the web, and operating systems expect an installable font like TTF or OTF rather than a WOFF container, so a WOFF file needs converting to TTF or OTF before Font Book or Windows Font Viewer will install it.
How much smaller is WOFF2 than WOFF?
WOFF2 typically comes in around 30 percent smaller than the same font packaged as WOFF, because it replaces WOFF's zlib compression with Brotli and adds a font-specific preprocessing step before compressing. The exact saving varies by font, but it's consistent enough that WOFF2 is the default choice for new @font-face declarations.