1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
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_AddRemoteImage() {
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.RegisterRemoteImage(pdf, url, "")
pdf.Image(url, 100, 100, 20, 20, false, "", 0, "")
fileStr := exampleFilename("Fpdf_AddRemoteImage")
err := pdf.OutputFileAndClose(fileStr)
summary(err, fileStr)
// Output:
// Successfully generated pdf/Fpdf_AddRemoteImage.pdf
}
|