Fork of golang/freetype with some extra stuff
Go to file
Hamcha 3115318f25
Refactor to use emoji package
2018-11-16 11:46:10 +01:00
cmd/print-glyph-points freetype/truetype: add testdata for advance widths and bounding boxes. 2013-12-16 13:47:21 +11:00
example Everything should be working decently now! 2018-11-16 10:58:44 +01:00
licenses Freetype-Go: Initial code check-in. 2010-04-02 10:07:24 +11:00
raster Change import paths 2018-11-14 10:38:19 +01:00
testdata freetype/truetype: update the golden tests for Ubuntu 14.04's version 2014-11-07 09:38:15 +11:00
truetype Change import paths 2018-11-14 10:38:19 +01:00
.gitignore Start work on emoji (mostly to be scrapped tho) 2018-11-14 18:08:36 +01: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
LICENSE freeetype: move the test fonts from the luxi-fonts/ directory to 2013-10-04 17:03:59 +10:00
README Delete hg related detritus. 2015-08-11 14:38:11 +10:00
emoji.go Refactor to use emoji package 2018-11-16 11:46:10 +01:00
freetype.go Refactor to use emoji package 2018-11-16 11:46:10 +01:00
freetype_test.go Update BenchmarkDrawString testdata dir. 2015-08-20 16:09:11 +10:00

README

The Freetype font rasterizer in the Go programming language.

To download and install from source:
$ go get github.com/golang/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.