From 66de656c58127811f119b9b8d34022438906d5de Mon Sep 17 00:00:00 2001 From: Jelmer Snoeck Date: Mon, 24 Aug 2015 22:42:03 +0100 Subject: Use RegisterHttpImage instead of RegisterRemoteImage. Remote can mean several things, HTTP is more specific and matches the actual implementation. --- contrib/fhttp/fhttp.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/fhttp/fhttp.go') diff --git a/contrib/fhttp/fhttp.go b/contrib/fhttp/fhttp.go index cf13b25..8887fbc 100644 --- a/contrib/fhttp/fhttp.go +++ b/contrib/fhttp/fhttp.go @@ -5,10 +5,10 @@ import ( "net/http" ) -// RegisterRemoteImage registers a remote image. Downloading the image from the +// RegisterHttpImage registers a HTTP image. Downloading the image from the // provided URL and adding it to the PDF but not adding it to the page. Use // Image() with the same URL to add the image to the page. -func RegisterRemoteImage(f *gofpdf.Fpdf, urlStr, tp string) (info *gofpdf.ImageInfoType) { +func RegisterHttpImage(f *gofpdf.Fpdf, urlStr, tp string) (info *gofpdf.ImageInfoType) { info = f.GetImageInfo(urlStr) if info != nil { -- cgit v1.2.1-24-ge1ad