diff options
author | Jelmer Snoeck <jelmer.snoeck@gmail.com> | 2015-08-26 19:43:02 +0100 |
---|---|---|
committer | Jelmer Snoeck <jelmer.snoeck@gmail.com> | 2015-08-26 19:43:02 +0100 |
commit | a1dcf58b5248a95377100a535eb7d20f708cf6a0 (patch) | |
tree | a0ca41551a39d1787c80afa81a3e50e3f1e0bc6e /contrib/fhttp/fhttp_test.go | |
parent | 66de656c58127811f119b9b8d34022438906d5de (diff) |
Httpimg: rename package.
Diffstat (limited to 'contrib/fhttp/fhttp_test.go')
-rw-r--r-- | contrib/fhttp/fhttp_test.go | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/contrib/fhttp/fhttp_test.go b/contrib/fhttp/fhttp_test.go deleted file mode 100644 index e09328a..0000000 --- a/contrib/fhttp/fhttp_test.go +++ /dev/null @@ -1,43 +0,0 @@ -package fhttp_test - -import ( - "fmt" - "github.com/jung-kurt/gofpdf" - "github.com/jung-kurt/gofpdf/contrib/fhttp" - "path/filepath" -) - -const ( - cnGofpdfDir = "./" - cnExampleDir = cnGofpdfDir + "/pdf" -) - -func exampleFilename(baseStr string) string { - return filepath.Join(cnExampleDir, baseStr+".pdf") -} - -func summary(err error, fileStr string) { - if err == nil { - fileStr = filepath.ToSlash(fileStr) - fmt.Printf("Successfully generated %s\n", fileStr) - } else { - fmt.Println(err) - } -} - -func ExampleFpdf_AddHttpImage() { - pdf := gofpdf.New("", "", "", "") - pdf.SetFont("Helvetica", "", 12) - pdf.SetFillColor(200, 200, 220) - pdf.AddPage() - - url := "https://github.com/jung-kurt/gofpdf/raw/master/image/logo_gofpdf.jpg?raw=true" - fhttp.RegisterHttpImage(pdf, url, "") - pdf.Image(url, 100, 100, 20, 20, false, "", 0, "") - - fileStr := exampleFilename("Fpdf_AddHttpImage") - err := pdf.OutputFileAndClose(fileStr) - summary(err, fileStr) - // Output: - // Successfully generated pdf/Fpdf_AddHttpImage.pdf -} |