Skip to content

bramp/font-1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A program for parsing OpenType fonts in Golang.

The main contribution of this repository is the SFNT library which provides support for parsing OpenType, TrueType and wOFF fonts.

Also included is a sample program called font that can do various useful things with fonts:

go install github.com/ConradIrwin/font

Info gets information about the font from the name table:

font info ~/Downloads/Fanwood.ttf

Scrub empties the name table (which can give you a few kb savings, even if you gzip or woff2-encode your font).

font scrub ~/Downloads/Fanwood.ttf

Stats tells you how much space each table is using:

font stats ~/Downloads/Fanwood.ttf

TODO

Still missing is support for parsing EOT files (which should be easy to add) and for parsing wOFF2 files (which might be more time consuming, as that uses custom compression algorithm). Also support for generating wOFF files (which is annoyingly fiddly due to the checksum calculation), and a whole load of code around dealing with the hundreds of other SFNT table formats.

Font file formats

On the web there are four main types of font file, TrueType, OpenType, wOFF, and EOT. They all represent the same SFNT information, but are encoded slightly differently. You may also come across SVG fonts, which are a totally different beast.

Inside one of these files, there are two main types of glyphs, TrueType and OpenType (also known as PostScript Type 2, or CFF). There are also a series of supporting tables which contain meta-data about the font (its Name, Copyright Information, Kerning tweaks, Ligatures, etc.etc.)

To confuse things further, OpenType fonts use exactly the same format as TrueType fonts, and a wOFF file can contain an OpenType glyphs or a TrueType glyphs. There's no good solution to the ambiguity in terminolgy, just be aware of it.

License

Copyright (c) Conrad Irwin 2015, MIT license. See LICENSE.MIT for details

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%