2014-09-04 09:03:55 +04:00
|
|
|
from helper import unittest, PillowTestCase, hopper
|
2012-10-16 00:26:38 +04:00
|
|
|
|
|
|
|
from PIL import Image
|
2016-02-27 05:10:50 +03:00
|
|
|
import os
|
2015-08-05 14:29:24 +03:00
|
|
|
import sys
|
2012-10-16 00:26:38 +04:00
|
|
|
|
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
class TestImage(PillowTestCase):
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_sanity(self):
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
im = Image.new("L", (100, 100))
|
|
|
|
self.assertEqual(
|
|
|
|
repr(im)[:45], "<PIL.Image.Image image mode=L size=100x100 at")
|
|
|
|
self.assertEqual(im.mode, "L")
|
|
|
|
self.assertEqual(im.size, (100, 100))
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
im = Image.new("RGB", (100, 100))
|
|
|
|
self.assertEqual(
|
|
|
|
repr(im)[:45], "<PIL.Image.Image image mode=RGB size=100x100 ")
|
|
|
|
self.assertEqual(im.mode, "RGB")
|
|
|
|
self.assertEqual(im.size, (100, 100))
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
Image.new("L", (100, 100), None)
|
|
|
|
im2 = Image.new("L", (100, 100), 0)
|
|
|
|
im3 = Image.new("L", (100, 100), "black")
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(im2.getcolors(), [(10000, 0)])
|
|
|
|
self.assertEqual(im3.getcolors(), [(10000, 0)])
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertRaises(ValueError, lambda: Image.new("X", (100, 100)))
|
2017-01-29 09:50:28 +03:00
|
|
|
self.assertRaises(ValueError, lambda: Image.new("", (100, 100)))
|
2014-06-10 13:10:47 +04:00
|
|
|
# self.assertRaises(
|
|
|
|
# MemoryError, lambda: Image.new("L", (1000000, 1000000)))
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2015-06-24 03:35:37 +03:00
|
|
|
def test_width_height(self):
|
|
|
|
im = Image.new("RGB", (1, 2))
|
|
|
|
self.assertEqual(im.width, 1)
|
|
|
|
self.assertEqual(im.height, 2)
|
|
|
|
|
|
|
|
im.size = (3, 4)
|
|
|
|
self.assertEqual(im.width, 3)
|
|
|
|
self.assertEqual(im.height, 4)
|
|
|
|
|
2015-06-09 07:36:34 +03:00
|
|
|
def test_invalid_image(self):
|
|
|
|
if str is bytes:
|
|
|
|
import StringIO
|
|
|
|
im = StringIO.StringIO('')
|
|
|
|
else:
|
|
|
|
import io
|
|
|
|
im = io.BytesIO(b'')
|
|
|
|
self.assertRaises(IOError, lambda: Image.open(im))
|
|
|
|
|
2015-08-05 14:29:24 +03:00
|
|
|
@unittest.skipIf(sys.version_info < (3, 4),
|
|
|
|
"pathlib only available in Python 3.4 or later")
|
|
|
|
def test_pathlib(self):
|
|
|
|
from pathlib import Path
|
|
|
|
im = Image.open(Path("Tests/images/hopper.jpg"))
|
|
|
|
self.assertEqual(im.mode, "RGB")
|
|
|
|
self.assertEqual(im.size, (128, 128))
|
|
|
|
|
2016-02-27 05:10:50 +03:00
|
|
|
temp_file = self.tempfile("temp.jpg")
|
|
|
|
if os.path.exists(temp_file):
|
|
|
|
os.remove(temp_file)
|
|
|
|
im.save(Path(temp_file))
|
|
|
|
|
2016-11-15 12:13:25 +03:00
|
|
|
def test_fp_name(self):
|
|
|
|
temp_file = self.tempfile("temp.jpg")
|
|
|
|
|
|
|
|
class FP(object):
|
|
|
|
def write(a, b):
|
|
|
|
pass
|
|
|
|
fp = FP()
|
|
|
|
fp.name = temp_file
|
|
|
|
|
|
|
|
im = hopper()
|
|
|
|
im.save(fp)
|
|
|
|
|
2015-10-03 10:12:44 +03:00
|
|
|
def test_tempfile(self):
|
|
|
|
# see #1460, pathlib support breaks tempfile.TemporaryFile on py27
|
|
|
|
# Will error out on save on 3.0.0
|
|
|
|
import tempfile
|
|
|
|
im = hopper()
|
2016-12-28 01:54:10 +03:00
|
|
|
with tempfile.TemporaryFile() as fp:
|
|
|
|
im.save(fp, 'JPEG')
|
|
|
|
fp.seek(0)
|
|
|
|
reloaded = Image.open(fp)
|
|
|
|
self.assert_image_similar(im, reloaded, 20)
|
2015-10-03 10:12:44 +03:00
|
|
|
|
2017-02-17 16:39:16 +03:00
|
|
|
def test_unknown_extension(self):
|
|
|
|
im = hopper()
|
|
|
|
temp_file = self.tempfile("temp.unknown")
|
|
|
|
self.assertRaises(ValueError, lambda: im.save(temp_file))
|
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_internals(self):
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
im = Image.new("L", (100, 100))
|
|
|
|
im.readonly = 1
|
|
|
|
im._copy()
|
|
|
|
self.assertFalse(im.readonly)
|
|
|
|
|
|
|
|
im.readonly = 1
|
|
|
|
im.paste(0, (0, 0, 100, 100))
|
|
|
|
self.assertFalse(im.readonly)
|
|
|
|
|
2015-04-24 11:24:52 +03:00
|
|
|
test_file = self.tempfile("temp.ppm")
|
|
|
|
im._dump(test_file)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
2014-07-05 17:29:40 +04:00
|
|
|
def test_comparison_with_other_type(self):
|
|
|
|
# Arrange
|
|
|
|
item = Image.new('RGB', (25, 25), '#000')
|
|
|
|
num = 12
|
|
|
|
|
|
|
|
# Act/Assert
|
|
|
|
# Shouldn't cause AttributeError (#774)
|
|
|
|
self.assertFalse(item is None)
|
|
|
|
self.assertFalse(item == None)
|
|
|
|
self.assertFalse(item == num)
|
|
|
|
|
2014-07-10 03:00:26 +04:00
|
|
|
def test_expand_x(self):
|
|
|
|
# Arrange
|
2014-09-04 09:03:55 +04:00
|
|
|
im = hopper()
|
2014-07-10 03:00:26 +04:00
|
|
|
orig_size = im.size
|
|
|
|
xmargin = 5
|
|
|
|
|
|
|
|
# Act
|
|
|
|
im = im._expand(xmargin)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
self.assertEqual(im.size[0], orig_size[0] + 2*xmargin)
|
|
|
|
self.assertEqual(im.size[1], orig_size[1] + 2*xmargin)
|
|
|
|
|
|
|
|
def test_expand_xy(self):
|
|
|
|
# Arrange
|
2014-09-04 09:03:55 +04:00
|
|
|
im = hopper()
|
2014-07-10 03:00:26 +04:00
|
|
|
orig_size = im.size
|
|
|
|
xmargin = 5
|
|
|
|
ymargin = 3
|
|
|
|
|
|
|
|
# Act
|
|
|
|
im = im._expand(xmargin, ymargin)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
self.assertEqual(im.size[0], orig_size[0] + 2*xmargin)
|
|
|
|
self.assertEqual(im.size[1], orig_size[1] + 2*ymargin)
|
|
|
|
|
|
|
|
def test_getbands(self):
|
|
|
|
# Arrange
|
2014-09-04 09:03:55 +04:00
|
|
|
im = hopper()
|
2014-07-10 03:00:26 +04:00
|
|
|
|
|
|
|
# Act
|
|
|
|
bands = im.getbands()
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
self.assertEqual(bands, ('R', 'G', 'B'))
|
|
|
|
|
|
|
|
def test_getbbox(self):
|
|
|
|
# Arrange
|
2014-09-04 09:03:55 +04:00
|
|
|
im = hopper()
|
2014-07-10 03:00:26 +04:00
|
|
|
|
|
|
|
# Act
|
|
|
|
bbox = im.getbbox()
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
self.assertEqual(bbox, (0, 0, 128, 128))
|
|
|
|
|
2014-07-15 01:42:31 +04:00
|
|
|
def test_ne(self):
|
|
|
|
# Arrange
|
|
|
|
im1 = Image.new('RGB', (25, 25), 'black')
|
|
|
|
im2 = Image.new('RGB', (25, 25), 'white')
|
|
|
|
|
|
|
|
# Act / Assert
|
|
|
|
self.assertTrue(im1 != im2)
|
|
|
|
|
|
|
|
def test_alpha_composite(self):
|
2017-02-14 12:27:02 +03:00
|
|
|
# https://stackoverflow.com/questions/3374878
|
2014-07-15 01:42:31 +04:00
|
|
|
# Arrange
|
2014-07-15 01:48:01 +04:00
|
|
|
from PIL import ImageDraw
|
2014-07-15 01:42:31 +04:00
|
|
|
|
|
|
|
expected_colors = sorted([
|
|
|
|
(1122, (128, 127, 0, 255)),
|
|
|
|
(1089, (0, 255, 0, 255)),
|
|
|
|
(3300, (255, 0, 0, 255)),
|
|
|
|
(1156, (170, 85, 0, 192)),
|
|
|
|
(1122, (0, 255, 0, 128)),
|
|
|
|
(1122, (255, 0, 0, 128)),
|
|
|
|
(1089, (0, 255, 0, 0))])
|
|
|
|
|
|
|
|
dst = Image.new('RGBA', size=(100, 100), color=(0, 255, 0, 255))
|
|
|
|
draw = ImageDraw.Draw(dst)
|
|
|
|
draw.rectangle((0, 33, 100, 66), fill=(0, 255, 0, 128))
|
|
|
|
draw.rectangle((0, 67, 100, 100), fill=(0, 255, 0, 0))
|
|
|
|
src = Image.new('RGBA', size=(100, 100), color=(255, 0, 0, 255))
|
|
|
|
draw = ImageDraw.Draw(src)
|
|
|
|
draw.rectangle((33, 0, 66, 100), fill=(255, 0, 0, 128))
|
|
|
|
draw.rectangle((67, 0, 100, 100), fill=(255, 0, 0, 0))
|
|
|
|
|
|
|
|
# Act
|
|
|
|
img = Image.alpha_composite(dst, src)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
img_colors = sorted(img.getcolors())
|
|
|
|
self.assertEqual(img_colors, expected_colors)
|
|
|
|
|
2016-06-20 18:36:26 +03:00
|
|
|
def test_registered_extensions_uninitialized(self):
|
2017-01-07 05:20:16 +03:00
|
|
|
# Arrange
|
|
|
|
Image._initialized = 0
|
|
|
|
extension = Image.EXTENSION
|
|
|
|
Image.EXTENSION = {}
|
|
|
|
|
2016-06-20 18:36:26 +03:00
|
|
|
# Act
|
2017-01-07 05:20:16 +03:00
|
|
|
Image.registered_extensions()
|
2016-06-20 18:36:26 +03:00
|
|
|
|
|
|
|
# Assert
|
2017-01-07 05:20:16 +03:00
|
|
|
self.assertEqual(Image._initialized, 2)
|
|
|
|
|
|
|
|
# Restore the original state and assert
|
|
|
|
Image.EXTENSION = extension
|
|
|
|
self.assertTrue(Image.EXTENSION)
|
2016-06-20 18:36:26 +03:00
|
|
|
|
|
|
|
def test_registered_extensions(self):
|
|
|
|
# Arrange
|
|
|
|
# Open an image to trigger plugin registration
|
|
|
|
Image.open('Tests/images/rgb.jpg')
|
|
|
|
|
|
|
|
# Act
|
2017-01-07 05:20:16 +03:00
|
|
|
extensions = Image.registered_extensions()
|
2016-06-20 18:36:26 +03:00
|
|
|
|
|
|
|
# Assert
|
2017-01-07 05:20:16 +03:00
|
|
|
self.assertTrue(bool(extensions))
|
|
|
|
for ext in ['.cur', '.icns', '.tif', '.tiff']:
|
|
|
|
self.assertIn(ext, extensions)
|
2016-06-20 18:36:26 +03:00
|
|
|
|
2014-09-02 16:14:00 +04:00
|
|
|
def test_effect_mandelbrot(self):
|
|
|
|
# Arrange
|
|
|
|
size = (512, 512)
|
|
|
|
extent = (-3, -2.5, 2, 2.5)
|
|
|
|
quality = 100
|
|
|
|
|
|
|
|
# Act
|
|
|
|
im = Image.effect_mandelbrot(size, extent, quality)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
self.assertEqual(im.size, (512, 512))
|
2014-09-02 16:53:58 +04:00
|
|
|
im2 = Image.open('Tests/images/effect_mandelbrot.png')
|
2014-09-02 16:14:00 +04:00
|
|
|
self.assert_image_equal(im, im2)
|
|
|
|
|
2014-09-02 17:39:35 +04:00
|
|
|
def test_effect_mandelbrot_bad_arguments(self):
|
|
|
|
# Arrange
|
|
|
|
size = (512, 512)
|
|
|
|
# Get coordinates the wrong way round:
|
|
|
|
extent = (+3, +2.5, -2, -2.5)
|
|
|
|
# Quality < 2:
|
|
|
|
quality = 1
|
|
|
|
|
|
|
|
# Act/Assert
|
|
|
|
self.assertRaises(
|
|
|
|
ValueError,
|
|
|
|
lambda: Image.effect_mandelbrot(size, extent, quality))
|
|
|
|
|
2014-09-02 15:45:54 +04:00
|
|
|
def test_effect_noise(self):
|
2014-09-02 15:11:08 +04:00
|
|
|
# Arrange
|
|
|
|
size = (100, 100)
|
|
|
|
sigma = 128
|
|
|
|
|
|
|
|
# Act
|
|
|
|
im = Image.effect_noise(size, sigma)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
self.assertEqual(im.size, (100, 100))
|
2015-03-06 00:21:42 +03:00
|
|
|
self.assertEqual(im.mode, "L")
|
|
|
|
self.assertNotEqual(im.getpixel((0, 0)), im.getpixel((0, 1)))
|
2014-09-02 15:11:08 +04:00
|
|
|
|
2014-09-02 16:53:58 +04:00
|
|
|
def test_effect_spread(self):
|
|
|
|
# Arrange
|
2014-09-04 09:03:55 +04:00
|
|
|
im = hopper()
|
2014-09-02 16:53:58 +04:00
|
|
|
distance = 10
|
|
|
|
|
|
|
|
# Act
|
|
|
|
im2 = im.effect_spread(distance)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
self.assertEqual(im.size, (128, 128))
|
|
|
|
im3 = Image.open('Tests/images/effect_spread.png')
|
2014-09-04 10:40:14 +04:00
|
|
|
self.assert_image_similar(im2, im3, 110)
|
2014-09-02 16:53:58 +04:00
|
|
|
|
2016-10-03 13:38:15 +03:00
|
|
|
def test_check_size(self):
|
2017-01-29 19:38:06 +03:00
|
|
|
# Checking that the _check_size function throws value errors
|
|
|
|
# when we want it to.
|
2016-10-03 13:38:15 +03:00
|
|
|
with self.assertRaises(ValueError):
|
|
|
|
Image.new('RGB', 0) # not a tuple
|
|
|
|
with self.assertRaises(ValueError):
|
|
|
|
Image.new('RGB', (0,)) # Tuple too short
|
|
|
|
with self.assertRaises(ValueError):
|
2017-01-29 19:38:06 +03:00
|
|
|
Image.new('RGB', (-1, -1)) # w,h < 0
|
2016-11-29 22:25:49 +03:00
|
|
|
|
|
|
|
# this should pass with 0 sized images, #2259
|
|
|
|
im = Image.new('L', (0, 0))
|
|
|
|
self.assertEqual(im.size, (0, 0))
|
2016-10-03 13:38:15 +03:00
|
|
|
|
2017-01-29 19:38:06 +03:00
|
|
|
self.assertTrue(Image.new('RGB', (1, 1)))
|
2016-10-04 03:06:35 +03:00
|
|
|
# Should pass lists too
|
2017-01-29 19:38:06 +03:00
|
|
|
i = Image.new('RGB', [1, 1])
|
2016-10-31 03:43:32 +03:00
|
|
|
self.assertIsInstance(i.size, tuple)
|
2016-10-03 13:50:25 +03:00
|
|
|
|
|
|
|
def test_storage_neg(self):
|
|
|
|
# Storage.c accepted negative values for xsize, ysize. Was
|
|
|
|
# test_neg_ppm, but the core function for that has been
|
|
|
|
# removed Calling directly into core to test the error in
|
|
|
|
# Storage.c, rather than the size check above
|
2016-10-04 03:06:35 +03:00
|
|
|
|
2016-10-03 13:50:25 +03:00
|
|
|
with self.assertRaises(ValueError):
|
2017-01-29 19:38:06 +03:00
|
|
|
Image.core.fill('RGB', (2, -2), (0, 0, 0))
|
2016-10-03 13:50:25 +03:00
|
|
|
|
2017-01-28 05:06:28 +03:00
|
|
|
def test_offset_not_implemented(self):
|
|
|
|
# Arrange
|
|
|
|
im = hopper()
|
|
|
|
|
|
|
|
# Act / Assert
|
|
|
|
self.assertRaises(NotImplementedError, lambda: im.offset(None))
|
|
|
|
|
2017-01-28 06:16:39 +03:00
|
|
|
def test_fromstring(self):
|
|
|
|
self.assertRaises(NotImplementedError, Image.fromstring)
|
|
|
|
|
2017-01-29 19:17:31 +03:00
|
|
|
def test_linear_gradient_wrong_mode(self):
|
|
|
|
# Arrange
|
|
|
|
wrong_mode = "RGB"
|
|
|
|
|
|
|
|
# Act / Assert
|
|
|
|
self.assertRaises(ValueError,
|
|
|
|
lambda: Image.linear_gradient(wrong_mode))
|
|
|
|
return
|
|
|
|
|
|
|
|
def test_linear_gradient(self):
|
|
|
|
|
|
|
|
# Arrange
|
2017-02-06 23:03:17 +03:00
|
|
|
target_file = "Tests/images/linear_gradient.png"
|
2017-01-29 19:17:31 +03:00
|
|
|
for mode in ["L", "P"]:
|
|
|
|
|
|
|
|
# Act
|
|
|
|
im = Image.linear_gradient(mode)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
self.assertEqual(im.size, (256, 256))
|
|
|
|
self.assertEqual(im.mode, mode)
|
|
|
|
self.assertEqual(im.getpixel((0, 0)), 0)
|
|
|
|
self.assertEqual(im.getpixel((255, 255)), 255)
|
2017-02-06 23:03:17 +03:00
|
|
|
target = Image.open(target_file).convert(mode)
|
|
|
|
self.assert_image_equal(im, target)
|
2017-01-29 19:17:31 +03:00
|
|
|
|
2017-01-29 19:44:24 +03:00
|
|
|
def test_radial_gradient_wrong_mode(self):
|
|
|
|
# Arrange
|
|
|
|
wrong_mode = "RGB"
|
|
|
|
|
|
|
|
# Act / Assert
|
|
|
|
self.assertRaises(ValueError,
|
|
|
|
lambda: Image.radial_gradient(wrong_mode))
|
|
|
|
return
|
|
|
|
|
|
|
|
def test_radial_gradient(self):
|
|
|
|
|
|
|
|
# Arrange
|
2017-02-06 23:03:17 +03:00
|
|
|
target_file = "Tests/images/radial_gradient.png"
|
2017-01-29 19:44:24 +03:00
|
|
|
for mode in ["L", "P"]:
|
|
|
|
|
|
|
|
# Act
|
|
|
|
im = Image.radial_gradient(mode)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
self.assertEqual(im.size, (256, 256))
|
|
|
|
self.assertEqual(im.mode, mode)
|
|
|
|
self.assertEqual(im.getpixel((0, 0)), 255)
|
|
|
|
self.assertEqual(im.getpixel((128, 128)), 0)
|
2017-02-06 23:03:17 +03:00
|
|
|
target = Image.open(target_file).convert(mode)
|
|
|
|
self.assert_image_equal(im, target)
|
2017-01-29 19:44:24 +03:00
|
|
|
|
2016-10-03 13:50:25 +03:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|