fontcmd: font toolkit that can select a subset of glyphs from a font, merge fonts, or show font information and display glyphs in the command line or as a raster image.
This library contains font parsers for WOFF, WOFF2, and EOT. It takes a byte-slice as input and converts it to SFNT formats (either TTF or OTF). As font formats for the web, WOFF, WOFF2, and EOT are really just containers for SFNT fonts (such as TTF and OTF) that have better compression.
The WOFF and WOFF2 converters have been testing using the validation tests from the W3C.
Import using:
import "github.com/tdewolff/font"
Then we can parse any byte-slice that is in the WOFF/WOFF2/EOT file format and extract its TTF/OTF content.
font, err := ioutil.ReadFile("DejaVuSerif.woff")
if err != nil {
panic(err)
}
sfnt, err := font.ToSFNT(font)
if err != nil {
panic(err)
}
or using an io.Reader
font, err := os.Open("DejaVuSerif.woff")
if err != nil {
panic(err)
}
font, err = font.NewSFNTReader(font)
if err != nil {
panic(err)
}
woff, err := ioutil.ReadFile("DejaVuSerif.woff")
if err != nil {
panic(err)
}
sfnt, err := font.ParseWOFF(woff)
if err != nil {
panic(err)
}
ext := font.Extension(sfnt)
if err = ioutil.WriteFile("DejaVuSerif"+ext, sfnt, 0644); err != nil {
panic(err)
}
Tested using https://github.com/w3c/woff/tree/master/woff1/tests.
woff2, err := ioutil.ReadFile("DejaVuSerif.woff2")
if err != nil {
panic(err)
}
sfnt, err := font.ParseWOFF2(woff2)
if err != nil {
panic(err)
}
ext := font.Extension(sfnt)
if err = ioutil.WriteFile("DejaVuSerif"+ext, sfnt, 0644); err != nil {
panic(err)
}
Tested using https://github.com/w3c/woff2-tests.
eof, err := ioutil.ReadFile("DejaVuSerif.eot")
if err != nil {
panic(err)
}
sfnt, err = font.ParseEOT(eot)
if err != nil {
panic(err)
}
ext := font.Extension(sfnt)
if err = ioutil.WriteFile("DejaVuSerif"+ext, sfnt, 0644); err != nil {
panic(err)
}
Released under the MIT license.