Skip to content

Free toolsDocuments

WOFF to TTF

The WOFF (version 1) from a site or a theme, back to the TTF or OTF inside it.

More free conversions, where you upload. The Fylane extension does the same work inside any upload form, on its own free share every day.About the extension

How to convert WOFF to TTF

  1. Drop the .woff file.
  2. Nothing to choose.
  3. Press Convert and download.

What happens to your file

A WOFF is the font’s own tables, each zlib-compressed, behind a small directory; the reader inflates every table, rebuilds the sfnt directory with fresh checksums and hands back the TTF (or OTF, when the font is CFF-based) exactly as the compressor was given it.

WOFF2 has its own page; this one reads only the 2012 format.

Questions

Is it the same font the designer made?

The tables are restored byte for byte; if the site subset the font before wrapping it, the subset is what comes back.

Am I allowed to install it?

That is the font’s licence, not the converter’s. A web-only licence usually does not cover the desktop.

Do this in code

curl -X POST https://api.fylane.dev/v1/jobs \
  -H "Authorization: Bearer $FYLANE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "file_id": "<file id>",
    "operation": "font.convert",
    "options": {
      "format": "ttf"
    }
  }'

The same operation, font.convert — TTF or OTF into WOFF2 (a third the bytes, what a site ships), or a WOFF2 back into the TTF or OTF inside it. Upload first with the quickstart; every option is on the operations page. 500 free credits a month, then $5 per thousand.