From 28ba4f2d4569e272c73eae22b65520b7d40d4d60 Mon Sep 17 00:00:00 2001 From: Kurt Jung Date: Fri, 2 Aug 2013 15:55:26 -0400 Subject: Removed development comments. --- fpdf_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fpdf_test.go b/fpdf_test.go index 7440a3b..9b57776 100644 --- a/fpdf_test.go +++ b/fpdf_test.go @@ -508,12 +508,8 @@ func ExampleFpdf_tutorial06() { func ExampleFpdf_tutorial07() { pdf := New("P", "mm", "A4", FONT_DIR) pdf.AddFont("Calligrapher", "", "calligra.json") - // pdf.AddFont("Marcellus-Regular", "", "Marcellus-Regular.json") - // pdf.AddFont("URWPalladioL-Roma", "", "p052003l.json") pdf.AddPage() pdf.SetFont("Calligrapher", "", 35) - // pdf.SetFont("Marcellus-Regular", "", 35) - // pdf.SetFont("URWPalladioL-Roma", "", 35) pdf.Cell(0, 10, "Enjoy new fonts with FPDF!") pdf.Output(docWriter(pdf, 7)) // Output: -- cgit v1.2.1-24-ge1ad