Merge pull request #166 from danjou-a/patch-1

Fix Resize verification value
This commit is contained in:
Tomás Aparicio 2017-07-06 19:18:09 +02:00 committed by GitHub
commit ce7bbda0f5

View file

@ -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")
}