Convert font in WOFF2 format to something else
Asked Answered
H

3

8

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?

Handwork answered 15/9, 2014 at 15:48 Comment(0)
C
12

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
Concord answered 27/3, 2015 at 20:44 Comment(1)
this was the ONLY tool that worked where all the other popular web alternatives failed on my woff file with an "invalid format" error... also i can confirm Windows users can finally join all the FOSS fun - recently released Windows Subsystem for Linux (WSL) Bash shell on Windows 10 successfully compiled this source... once you've got bash running you need to "sudo apt-get install git" "... make" and "... g++" prior to executing the build instructions in the github readmeElizabetelizabeth
G
5

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

Gilemette answered 3/4, 2015 at 23:24 Comment(3)
It appears you are affiliated with onlinefontconverter.com. Please note that our self-promotion policy requires you to disclose this information in answers like this one.Panpsychist
Also, it appears that the service isn't producing proper ZIP file - getting CRC fails all over the show.Gladygladys
The service is perfectly working to convert woff2 to ttf. And it's totally free. The users with a bigger heart can respectfully donate something to the developer. For your peace of mind, I am not the owner/promoter, but I found it mentioned by someone on graphicdesign.stackexchange.com/questions/45690/….Vercelli
S
1

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.

Salve answered 29/6, 2023 at 22:54 Comment(1)
Your answer could be improved with additional supporting information. Please edit to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers in the help center.Intrauterine

© 2022 - 2024 — McMap. All rights reserved.