From fe1c23ea1e052f90687c6e3fa2a6cf421d31b3dd Mon Sep 17 00:00:00 2001 From: Quentin DANJOU Date: Thu, 6 Jul 2017 16:35:52 +0200 Subject: [PATCH] Fix Resize verification value The resize is 800x600 and the checking was 400x300 after resizing. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1b0836..6c68760 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ if err != nil { } size, err := bimg.NewImage(newImage).Size() -if size.Width == 400 && size.Height == 300 { +if size.Width == 800 && size.Height == 600 { fmt.Println("The image size is valid") }