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?

Ashley Coolman
  • 11,095
  • 5
  • 59
  • 81

3 Answers3

11

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
Timm
  • 1,005
  • 8
  • 20
  • 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 readme – Beej Sep 30 '16 at 20:41
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

Endless
  • 34,080
  • 13
  • 108
  • 131
  • 1
    [It appears](https://github.com/jimmywarting/ofc) you are affiliated with onlinefontconverter.com. Please note that our [self-promotion policy](http://meta.stackexchange.com/questions/57497) requires you to disclose this information in answers like this one. – josliber Dec 03 '15 at 02:53
  • Also, it appears that the service isn't producing proper ZIP file - getting CRC fails all over the show. – Mike Rockétt Jun 11 '16 at 11:11
  • 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 http://graphicdesign.stackexchange.com/questions/45690/how-to-convert-a-woff2-webfont-into-a-ttf-desktop-font/. – Mr Programmer Oct 03 '16 at 03:10
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.

Qijia Liu
  • 11
  • 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](/help/how-to-answer). – Community Jul 05 '23 at 08:52