Reputation: 11585
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
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
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
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:
Upvotes: 12