summaryrefslogtreecommitdiff
path: root/fpdf_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'fpdf_test.go')
-rw-r--r--fpdf_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdf_test.go b/fpdf_test.go
index b556713..71aa0d2 100644
--- a/fpdf_test.go
+++ b/fpdf_test.go
@@ -1086,8 +1086,8 @@ func ExampleFpdf_RegisterImage() {
// Test the image information retrieval method
infoShow := func(imageStr string) {
imageStr = imageFile(imageStr)
- info, ok := pdf.GetImageInfo(imageStr)
- if ok {
+ info := pdf.GetImageInfo(imageStr)
+ if info != nil {
if info.Width() > 0.0 {
fmt.Printf("Image %s is registered\n", imageStr)
} else {