|
1 |
| -This is a port of the Freetype font rasterizer (www.freetype.org) to the Go |
2 |
| -programming language (golang.org). |
| 1 | +The Freetype font rasterizer in the Go programming language. |
3 | 2 |
|
4 | 3 | To download and install from source:
|
5 |
| -$ go get code.google.com/p/freetype-go/freetype |
| 4 | +$ go get github.com/golang/freetype |
6 | 5 |
|
7 | 6 | It is an incomplete port:
|
8 | 7 | * It only supports TrueType fonts, and not Type 1 fonts nor bitmap fonts.
|
9 | 8 | * It only supports the Unicode encoding.
|
10 | 9 |
|
11 | 10 | There are also some implementation differences:
|
12 |
| - * It uses a 24.8 fixed point co-ordinate system everywhere internally, |
| 11 | + * It uses a 26.6 fixed point co-ordinate system everywhere internally, |
13 | 12 | as opposed to the original Freetype's mix of 26.6 (or 10.6 for 16-bit
|
14 |
| - systems) in some places, and 24.8 in the "smooth" rasterizer. |
| 13 | + systems) in some places, and 24.8 in the "smooth" rasterizer. |
15 | 14 |
|
16 | 15 | Freetype-Go is derived from Freetype, which is written in C. Freetype is
|
17 | 16 | copyright 1996-2010 David Turner, Robert Wilhelm, and Werner Lemberg.
|
18 | 17 | Freetype-Go is copyright The Freetype-Go Authors, who are listed in the
|
19 | 18 | AUTHORS file.
|
20 | 19 |
|
21 |
| -The Freetype-Go homepage is http://code.google.com/p/freetype-go/ |
22 |
| - |
| 20 | +Unless otherwise noted, the Freetype-Go source files are distributed |
| 21 | +under the BSD-style license found in the LICENSE file. |
0 commit comments