2010-05-03 23:54:43 +00:00
|
|
|
// Copyright 2010 The Freetype-Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by your choice of either the
|
2010-08-03 01:07:23 +00:00
|
|
|
// FreeType License or the GNU General Public License version 2 (or
|
|
|
|
// any later version), both of which can be found in the LICENSE file.
|
2010-05-03 23:54:43 +00:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
|
2015-08-12 04:30:01 +00:00
|
|
|
"github.com/golang/freetype/truetype"
|
2010-05-03 23:54:43 +00:00
|
|
|
)
|
|
|
|
|
2013-10-04 07:03:59 +00:00
|
|
|
var fontfile = flag.String("fontfile", "../../testdata/luxisr.ttf", "filename of the ttf font")
|
2010-05-03 23:54:43 +00:00
|
|
|
|
|
|
|
func printBounds(b truetype.Bounds) {
|
|
|
|
fmt.Printf("XMin:%d YMin:%d XMax:%d YMax:%d\n", b.XMin, b.YMin, b.XMax, b.YMax)
|
|
|
|
}
|
|
|
|
|
2010-05-14 03:29:53 +00:00
|
|
|
func printGlyph(g *truetype.GlyphBuf) {
|
2010-05-03 23:54:43 +00:00
|
|
|
printBounds(g.B)
|
|
|
|
fmt.Print("Points:\n---\n")
|
|
|
|
e := 0
|
|
|
|
for i, p := range g.Point {
|
|
|
|
fmt.Printf("%4d, %4d", p.X, p.Y)
|
|
|
|
if p.Flags&0x01 != 0 {
|
|
|
|
fmt.Print(" on\n")
|
|
|
|
} else {
|
|
|
|
fmt.Print(" off\n")
|
|
|
|
}
|
|
|
|
if i+1 == int(g.End[e]) {
|
|
|
|
fmt.Print("---\n")
|
|
|
|
e++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
fmt.Printf("Loading fontfile %q\n", *fontfile)
|
|
|
|
b, err := ioutil.ReadFile(*fontfile)
|
|
|
|
if err != nil {
|
2010-10-15 03:02:11 +00:00
|
|
|
log.Println(err)
|
2010-05-03 23:54:43 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
font, err := truetype.Parse(b)
|
|
|
|
if err != nil {
|
2010-10-15 03:02:11 +00:00
|
|
|
log.Println(err)
|
2010-05-03 23:54:43 +00:00
|
|
|
return
|
|
|
|
}
|
2012-07-25 12:10:25 +00:00
|
|
|
fupe := font.FUnitsPerEm()
|
|
|
|
printBounds(font.Bounds(fupe))
|
|
|
|
fmt.Printf("FUnitsPerEm:%d\n\n", fupe)
|
2010-05-03 23:54:43 +00:00
|
|
|
|
|
|
|
c0, c1 := 'A', 'V'
|
|
|
|
|
|
|
|
i0 := font.Index(c0)
|
2012-07-25 12:10:25 +00:00
|
|
|
hm := font.HMetric(fupe, i0)
|
2010-05-14 03:29:53 +00:00
|
|
|
g := truetype.NewGlyphBuf()
|
2014-02-01 03:12:48 +00:00
|
|
|
err = g.Load(font, fupe, i0, truetype.NoHinting)
|
2010-05-03 23:54:43 +00:00
|
|
|
if err != nil {
|
2010-10-15 03:02:11 +00:00
|
|
|
log.Println(err)
|
2010-05-03 23:54:43 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
fmt.Printf("'%c' glyph\n", c0)
|
|
|
|
fmt.Printf("AdvanceWidth:%d LeftSideBearing:%d\n", hm.AdvanceWidth, hm.LeftSideBearing)
|
|
|
|
printGlyph(g)
|
|
|
|
i1 := font.Index(c1)
|
2012-07-25 12:10:25 +00:00
|
|
|
fmt.Printf("\n'%c', '%c' Kerning:%d\n", c0, c1, font.Kerning(fupe, i0, i1))
|
2010-05-03 23:54:43 +00:00
|
|
|
}
|