From caed6a338466079a637af39db2836b5f4b1771a9 Mon Sep 17 00:00:00 2001 From: Kurt Jung Date: Fri, 2 Aug 2013 14:59:27 -0400 Subject: Initial commit into mercurial --- ttfparser_test.go | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 ttfparser_test.go (limited to 'ttfparser_test.go') diff --git a/ttfparser_test.go b/ttfparser_test.go new file mode 100644 index 0000000..dcdab4e --- /dev/null +++ b/ttfparser_test.go @@ -0,0 +1,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(GOFPDF_DIR + "/font/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(GOFPDF_DIR + "/font/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++ + } + } +} -- cgit v1.2.1-24-ge1ad