Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PIL/Image.py
Original file line number Diff line number Diff line change
Expand Up @@ -1994,8 +1994,8 @@ def _check_size(size):
raise ValueError("Size must be a tuple")
if len(size) != 2:
raise ValueError("Size must be a tuple of length 2")
if size[0] <= 0 or size[1] <= 0:
raise ValueError("Width and Height must be > 0")
if size[0] < 0 or size[1] < 0:
raise ValueError("Width and Height must be => 0")

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change => to >=, and might as well be a small h too:

"Width and height must be >= 0"


return True

Expand Down
6 changes: 5 additions & 1 deletion Tests/test_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,11 @@ def test_check_size(self):
with self.assertRaises(ValueError):
Image.new('RGB', (0,)) # Tuple too short
with self.assertRaises(ValueError):
Image.new('RGB', (0,0)) # w,h <= 0
Image.new('RGB', (-1,-1)) # w,h < 0

# this should pass with 0 sized images, #2259
im = Image.new('L', (0, 0))
self.assertEqual(im.size, (0, 0))

self.assertTrue(Image.new('RGB', (1,1)))
# Should pass lists too
Expand Down
13 changes: 13 additions & 0 deletions Tests/test_image_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,25 @@ def check(self, mode, c=None):
im.getpixel((0, 0)), c,
"put/getpixel roundtrip failed for mode %s, color %s" % (mode, c))

# Check 0
im = Image.new(mode, (0, 0), None)
with self.assertRaises(IndexError):
im.putpixel((0, 0), c)
with self.assertRaises(IndexError):
im.getpixel((0, 0))

# check initial color
im = Image.new(mode, (1, 1), c)
self.assertEqual(
im.getpixel((0, 0)), c,
"initial color failed for mode %s, color %s " % (mode, c))

# Check 0
im = Image.new(mode, (0, 0), c)
with self.assertRaises(IndexError):
im.getpixel((0, 0))


def test_basic(self):
for mode in ("1", "L", "LA", "I", "I;16", "I;16B", "F",
"P", "PA", "RGB", "RGBA", "RGBX", "CMYK", "YCbCr"):
Expand Down
5 changes: 5 additions & 0 deletions Tests/test_image_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ def convert(im, mode):
for mode in modes:
convert(im, mode)

# Check 0
im = Image.new(mode, (0,0))
for mode in modes:
convert(im, mode)

def test_default(self):

im = hopper("P")
Expand Down
9 changes: 9 additions & 0 deletions Tests/test_image_copy.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from helper import unittest, PillowTestCase, hopper

from PIL import Image

import copy


Expand Down Expand Up @@ -33,5 +35,12 @@ def test_copy(self):
self.assertEqual(out.mode, im.mode)
self.assertEqual(out.size, croppedSize)

def test_copy_zero(self):
im = Image.new('RGB', (0,0))
out = im.copy()
self.assertEqual(out.mode, im.mode)
self.assertEqual(out.size, im.size)


if __name__ == '__main__':
unittest.main()
17 changes: 17 additions & 0 deletions Tests/test_image_crop.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,23 @@ def test_crop_crash(self):
img = img.crop(extents)
img.load()

def test_crop_zero(self):

im = Image.new('RGB', (0, 0), 'white')

cropped = im.crop((0, 0, 0, 0))
self.assertEqual(cropped.size, (0, 0))

cropped = im.crop((10, 10, 20, 20))
self.assertEqual(cropped.size, (10, 10))
self.assertEqual(cropped.getdata()[0], (0, 0, 0))

im = Image.new('RGB', (0, 0))

cropped = im.crop((10, 10, 20, 20))
self.assertEqual(cropped.size, (10, 10))
self.assertEqual(cropped.getdata()[2], (0, 0, 0))



if __name__ == '__main__':
Expand Down
8 changes: 8 additions & 0 deletions Tests/test_image_resize.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ def test_endianness(self):
# as separately resized channel
self.assert_image_equal(ch, references[channels[i]])

def test_enlarge_zero(self):
for f in [Image.NEAREST, Image.BOX, Image.BILINEAR, Image.HAMMING,
Image.BICUBIC, Image.LANCZOS]:
r = self.resize(Image.new('RGB', (0,0), "white"), (212, 195), f)
self.assertEqual(r.mode, "RGB")
self.assertEqual(r.size, (212, 195))
self.assertEqual(r.getdata()[0], (0,0,0))


class TestImageResize(PillowTestCase):

Expand Down
13 changes: 11 additions & 2 deletions Tests/test_image_rotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,24 @@ def rotate(im, mode, angle):
self.assertEqual(out.mode, mode)
if angle % 180 == 0:
self.assertEqual(out.size, im.size)
elif im.size == (0, 0):
self.assertEqual(out.size, im.size)
else:
self.assertNotEqual(out.size, im.size)
for mode in "1", "P", "L", "RGB", "I", "F":


for mode in ("1", "P", "L", "RGB", "I", "F"):
im = hopper(mode)
rotate(im, mode, 45)
for angle in 0, 90, 180, 270:

for angle in (0, 90, 180, 270):
im = Image.open('Tests/images/test-card.png')
rotate(im, im.mode, angle)

for angle in (0, 45, 90, 180, 270):
im = Image.new('RGB',(0,0))
rotate(im, im.mode, angle)


if __name__ == '__main__':
unittest.main()