Ashley Coolman
Ashley Coolman

Reputation: 11585

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?

Upvotes: 8

Views: 6717

Answers (3)

Qijia Liu
Qijia Liu

Reputation: 11

I wrote https://my-font-converter.vercel.app/ for converting between ttf and woff2.

It's based on google's woff2 lib, and also Open Source: https://github.com/LibreService/my_font_converter.

Your font is not uploaded to a server. Conversion happens in browser.

Upvotes: 1

Endless
Endless

Reputation: 37815

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

Upvotes: 5

Timm
Timm

Reputation: 1015

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

Upvotes: 12

Related Questions