1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*
* Copyright (c) 2013 Kurt Jung (Gmail: kurt.w.jung)
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package gofpdf
import (
"fmt"
"testing"
)
func ExampleTtfParse() {
ttf, err := TtfParse(FONT_DIR + "/calligra.ttf")
if err == nil {
fmt.Printf("Postscript name: %s\n", ttf.PostScriptName)
fmt.Printf("unitsPerEm: %8d\n", ttf.UnitsPerEm)
fmt.Printf("Xmin: %8d\n", ttf.Xmin)
fmt.Printf("Ymin: %8d\n", ttf.Ymin)
fmt.Printf("Xmax: %8d\n", ttf.Xmax)
fmt.Printf("Ymax: %8d\n", ttf.Ymax)
} else {
fmt.Printf("%s\n", err)
}
// Output:
// Postscript name: CalligrapherRegular
// unitsPerEm: 1000
// Xmin: -173
// Ymin: -234
// Xmax: 1328
// Ymax: 899
}
func TestLoadMap(t *testing.T) {
expectList := []string{
"164: 0x0E04 khokhwaithai",
"165: 0x0E05 khokhonthai",
"166: 0x0E06 khorakhangthai",
"167: 0x0E07 ngonguthai",
"168: 0x0E08 chochanthai",
"169: 0x0E09 chochingthai",
}
list, err := loadMap(FONT_DIR + "/iso-8859-11.map")
if err == nil {
pos := 0
for j := 164; j < 170; j++ {
enc := list[j]
str := fmt.Sprintf("%3d: 0x%04X %s", j, enc.uv, enc.name)
// fmt.Printf("Expect [%s], Got [%s]\n", expectList[pos], str)
if expectList[pos] != str {
t.Fatalf("Unexpected output from loadMap")
}
pos++
}
}
}
|