diff options
author | Kurt Jung <kurt.w.jung@gmail.com> | 2015-10-11 09:43:23 -0400 |
---|---|---|
committer | Kurt Jung <kurt.w.jung@gmail.com> | 2015-10-11 09:43:23 -0400 |
commit | 08c842eee7361c4d515301a5d84d246a0b0a9462 (patch) | |
tree | 0b74abc337abe1da3fd62533d7f4ece0de0ef323 | |
parent | eca9f96fbf9b6be62915d111546f4798ce3fac62 (diff) |
Investigate missing spaces between words
-rw-r--r-- | fpdf_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fpdf_test.go b/fpdf_test.go index e45f966..a0eaec1 100644 --- a/fpdf_test.go +++ b/fpdf_test.go @@ -1140,6 +1140,7 @@ func ExampleFpdf_SVGBasicWrite() { err error ) pdf := gofpdf.New("P", "mm", "A4", "") // A4 210.0 x 297.0 + pdf.SetCompression(false) pdf.SetFont("Times", "", fontPtSize) lineHt := pdf.PointConvert(fontPtSize) pdf.AddPage() |