Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert font in WOFF2 format to something else

My team has a woff2 font file, which we are not equipped to deal with. Does anyone know a pipeline for downgrading to a more common format?

like image 675
Ashley Coolman Avatar asked Sep 15 '14 15:09

Ashley Coolman


People also ask

Can you convert WOFF2 to TTF?

How to convert a WOFF2 to TTF? Add a file for conversion: click anywhere in the blue area or on the Browse for file button to upload or drag and drop it. You can also add the document by entering its URL in the URL cell. Then click the Convert button.

What is WOFF2 font file?

A WOFF2 file is a web font file created in the WOFF (Web Open Font Format) 2.0 format, an open format used to deliver webpage fonts on the fly. It is saved as a compressed container that supports TrueType (. TTF) and OpenType (. OTF) fonts. WOFF2 files also support font licensing metadata.


2 Answers

https://github.com/google/woff2

This project provides woff2_decompress, which converts your woff2 to ttf.

With ttf you can convert it to all webfonts:

  • woff, svg, otf can be converted with fontforge
  • eot can be converted with ttf2eot
like image 152
Timm Avatar answered Sep 20 '22 19:09

Timm


https://onlinefontconverter.com is a free online tool to convert almost any font anything else. It supports downgrading woff2. And you don't have to install any program

like image 28
Endless Avatar answered Sep 23 '22 19:09

Endless