Fork of golang/freetype with some extra stuff
Find a file
2018-08-30 17:02:03 -06:00
cmd/print-glyph-points freetype/truetype: add testdata for advance widths and bounding boxes. 2013-12-16 13:47:21 +11:00
example merged changes from tdewolff-master 2018-08-17 00:57:27 -06:00
licenses Freetype-Go: Initial code check-in. 2010-04-02 10:07:24 +11:00
raster merged changes from tdewolff-master 2018-08-17 00:57:27 -06:00
testdata freetype/truetype: update the golden tests for Ubuntu 14.04's version 2014-11-07 09:38:15 +11:00
truetype guard on weird index access error in glyph.go:234 2018-08-30 17:02:03 -06:00
AUTHORS A+C: add Michael Fogleman <fogleman@gmail.com> 2016-02-18 18:24:11 -05:00
CONTRIBUTORS A+C: add Michael Fogleman <fogleman@gmail.com> 2016-02-18 18:24:11 -05:00
freetype.go minor fixes to prevent crashing on linux and eliminate error msgs about kern tables 2018-08-16 01:05:50 -06:00
freetype_test.go Update BenchmarkDrawString testdata dir. 2015-08-20 16:09:11 +10:00
LICENSE freeetype: move the test fonts from the luxi-fonts/ directory to 2013-10-04 17:03:59 +10:00
README merged changes from tdewolff-master 2018-08-17 00:57:27 -06:00

The Freetype font rasterizer in the Go programming language.

To download and install from source:
$ go get github.com/tdewolff/freetype

It is an incomplete port:
  * It only supports TrueType fonts, and not Type 1 fonts nor bitmap fonts.
  * It only supports the Unicode encoding.

There are also some implementation differences:
  * It uses a 26.6 fixed point co-ordinate system everywhere internally,
    as opposed to the original Freetype's mix of 26.6 (or 10.6 for 16-bit
    systems) in some places, and 24.8 in the "smooth" rasterizer.

Freetype-Go is derived from Freetype, which is written in C. Freetype is
copyright 1996-2010 David Turner, Robert Wilhelm, and Werner Lemberg.
Freetype-Go is copyright The Freetype-Go Authors, who are listed in the
AUTHORS file.

Unless otherwise noted, the Freetype-Go source files are distributed
under the BSD-style license found in the LICENSE file.