summaryrefslogtreecommitdiff
path: root/ttfparser_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ttfparser_test.go')
-rw-r--r--ttfparser_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ttfparser_test.go b/ttfparser_test.go
index 77f2880..6b9b4c1 100644
--- a/ttfparser_test.go
+++ b/ttfparser_test.go
@@ -24,7 +24,7 @@ import (
)
func ExampleTtfParse() {
- ttf, err := gofpdf.TtfParse(FONT_DIR + "/calligra.ttf")
+ ttf, err := gofpdf.TtfParse(cnFontDir + "/calligra.ttf")
if err == nil {
fmt.Printf("Postscript name: %s\n", ttf.PostScriptName)
fmt.Printf("unitsPerEm: %8d\n", ttf.UnitsPerEm)
@@ -55,7 +55,7 @@ func hexStr(s string) string {
}
func ExampleFpdf_GetStringWidth() {
- pdf := gofpdf.New("", "", "", FONT_DIR)
+ pdf := gofpdf.New("", "", "", cnFontDir)
pdf.SetFont("Helvetica", "", 12)
pdf.AddPage()
for _, s := range []string{"Hello", "世界", "\xe7a va?"} {