2014-09-04 09:44:46 +04:00
|
|
|
from helper import unittest, PillowTestCase, hopper, netpbm_available
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2017-03-03 19:25:01 +03:00
|
|
|
from PIL import Image, ImagePalette, GifImagePlugin
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2016-09-27 00:44:40 +03:00
|
|
|
from io import BytesIO
|
|
|
|
|
2012-10-16 00:26:38 +04:00
|
|
|
codecs = dir(Image.core)
|
|
|
|
|
|
|
|
# sample gif stream
|
2014-09-04 09:44:46 +04:00
|
|
|
TEST_GIF = "Tests/images/hopper.gif"
|
|
|
|
|
|
|
|
with open(TEST_GIF, "rb") as f:
|
2013-05-23 21:02:19 +04:00
|
|
|
data = f.read()
|
2012-10-16 00:26:38 +04:00
|
|
|
|
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
class TestFileGif(PillowTestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
if "gif_encoder" not in codecs or "gif_decoder" not in codecs:
|
|
|
|
self.skipTest("gif support not available") # can this happen?
|
|
|
|
|
|
|
|
def test_sanity(self):
|
2014-09-04 09:44:46 +04:00
|
|
|
im = Image.open(TEST_GIF)
|
2014-06-10 13:10:47 +04:00
|
|
|
im.load()
|
|
|
|
self.assertEqual(im.mode, "P")
|
|
|
|
self.assertEqual(im.size, (128, 128))
|
|
|
|
self.assertEqual(im.format, "GIF")
|
2015-08-21 15:10:13 +03:00
|
|
|
self.assertEqual(im.info["version"], b"GIF89a")
|
2014-06-10 13:10:47 +04:00
|
|
|
|
2015-07-03 08:03:25 +03:00
|
|
|
def test_invalid_file(self):
|
2015-07-03 09:22:56 +03:00
|
|
|
invalid_file = "Tests/images/flower.jpg"
|
|
|
|
|
|
|
|
self.assertRaises(SyntaxError,
|
2017-09-01 14:05:40 +03:00
|
|
|
GifImagePlugin.GifImageFile, invalid_file)
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_optimize(self):
|
2014-11-06 15:29:27 +03:00
|
|
|
def test_grayscale(optimize):
|
2014-06-10 13:10:47 +04:00
|
|
|
im = Image.new("L", (1, 1), 0)
|
2014-11-27 22:43:45 +03:00
|
|
|
filename = BytesIO()
|
|
|
|
im.save(filename, "GIF", optimize=optimize)
|
|
|
|
return len(filename.getvalue())
|
2014-11-06 15:29:27 +03:00
|
|
|
|
|
|
|
def test_bilevel(optimize):
|
|
|
|
im = Image.new("1", (1, 1), 0)
|
2015-04-24 11:24:52 +03:00
|
|
|
test_file = BytesIO()
|
|
|
|
im.save(test_file, "GIF", optimize=optimize)
|
|
|
|
return len(test_file.getvalue())
|
2014-11-06 15:29:27 +03:00
|
|
|
|
|
|
|
self.assertEqual(test_grayscale(0), 800)
|
|
|
|
self.assertEqual(test_grayscale(1), 38)
|
|
|
|
self.assertEqual(test_bilevel(0), 800)
|
|
|
|
self.assertEqual(test_bilevel(1), 800)
|
2013-11-08 04:39:36 +04:00
|
|
|
|
2016-09-27 00:44:40 +03:00
|
|
|
def test_optimize_correctness(self):
|
|
|
|
# 256 color Palette image, posterize to > 128 and < 128 levels
|
|
|
|
# Size bigger and smaller than 512x512
|
|
|
|
# Check the palette for number of colors allocated.
|
2016-12-28 01:54:10 +03:00
|
|
|
# Check for correctness after conversion back to RGB
|
2016-09-27 00:44:40 +03:00
|
|
|
def check(colors, size, expected_palette_length):
|
|
|
|
# make an image with empty colors in the start of the palette range
|
2017-04-20 14:14:23 +03:00
|
|
|
im = Image.frombytes('P', (colors, colors),
|
|
|
|
bytes(bytearray(range(256-colors, 256))*colors))
|
|
|
|
im = im.resize((size, size))
|
2016-09-27 00:44:40 +03:00
|
|
|
outfile = BytesIO()
|
|
|
|
im.save(outfile, 'GIF')
|
|
|
|
outfile.seek(0)
|
|
|
|
reloaded = Image.open(outfile)
|
|
|
|
|
|
|
|
# check palette length
|
2017-04-20 14:14:23 +03:00
|
|
|
palette_length = max(i+1 for i, v in enumerate(reloaded.histogram()) if v)
|
2016-09-27 00:44:40 +03:00
|
|
|
self.assertEqual(expected_palette_length, palette_length)
|
2016-12-28 01:54:10 +03:00
|
|
|
|
2016-09-27 00:44:40 +03:00
|
|
|
self.assert_image_equal(im.convert('RGB'), reloaded.convert('RGB'))
|
|
|
|
|
|
|
|
# These do optimize the palette
|
|
|
|
check(128, 511, 128)
|
|
|
|
check(64, 511, 64)
|
|
|
|
check(4, 511, 4)
|
|
|
|
|
|
|
|
# These don't optimize the palette
|
|
|
|
check(128, 513, 256)
|
|
|
|
check(64, 513, 256)
|
|
|
|
check(4, 513, 256)
|
|
|
|
|
|
|
|
# other limits that don't optimize the palette
|
|
|
|
check(129, 511, 256)
|
|
|
|
check(255, 511, 256)
|
|
|
|
check(256, 511, 256)
|
|
|
|
|
2014-08-19 13:32:52 +04:00
|
|
|
def test_optimize_full_l(self):
|
2014-08-19 16:00:15 +04:00
|
|
|
im = Image.frombytes("L", (16, 16), bytes(bytearray(range(256))))
|
2015-04-24 11:24:52 +03:00
|
|
|
test_file = BytesIO()
|
|
|
|
im.save(test_file, "GIF", optimize=True)
|
2014-08-19 13:24:44 +04:00
|
|
|
self.assertEqual(im.mode, "L")
|
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_roundtrip(self):
|
|
|
|
out = self.tempfile('temp.gif')
|
2014-09-04 09:44:46 +04:00
|
|
|
im = hopper()
|
2014-06-10 13:10:47 +04:00
|
|
|
im.save(out)
|
|
|
|
reread = Image.open(out)
|
2013-11-08 04:39:36 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assert_image_similar(reread.convert('RGB'), im, 50)
|
2013-11-08 04:39:36 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_roundtrip2(self):
|
|
|
|
# see https://github.com/python-pillow/Pillow/issues/403
|
|
|
|
out = self.tempfile('temp.gif')
|
2014-09-04 09:44:46 +04:00
|
|
|
im = Image.open(TEST_GIF)
|
2014-06-10 13:10:47 +04:00
|
|
|
im2 = im.copy()
|
|
|
|
im2.save(out)
|
|
|
|
reread = Image.open(out)
|
2013-11-08 04:39:57 +04:00
|
|
|
|
2014-09-04 09:44:46 +04:00
|
|
|
self.assert_image_similar(reread.convert('RGB'), hopper(), 50)
|
2013-11-08 04:39:57 +04:00
|
|
|
|
2015-06-30 11:07:23 +03:00
|
|
|
def test_roundtrip_save_all(self):
|
2015-07-01 02:18:05 +03:00
|
|
|
# Single frame image
|
2015-06-30 11:07:23 +03:00
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im = hopper()
|
|
|
|
im.save(out, save_all=True)
|
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
self.assert_image_similar(reread.convert('RGB'), im, 50)
|
|
|
|
|
2015-07-01 02:18:05 +03:00
|
|
|
# Multiframe image
|
|
|
|
im = Image.open("Tests/images/dispose_bgnd.gif")
|
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im.save(out, save_all=True)
|
|
|
|
reread = Image.open(out)
|
|
|
|
|
2015-07-23 12:29:26 +03:00
|
|
|
self.assertEqual(reread.n_frames, 5)
|
2015-07-01 02:18:05 +03:00
|
|
|
|
2015-07-24 12:14:20 +03:00
|
|
|
def test_headers_saving_for_animated_gifs(self):
|
2015-08-21 15:09:05 +03:00
|
|
|
important_headers = ['background', 'version', 'duration', 'loop']
|
2015-07-24 12:14:20 +03:00
|
|
|
# Multiframe image
|
|
|
|
im = Image.open("Tests/images/dispose_bgnd.gif")
|
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im.save(out, save_all=True)
|
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
for header in important_headers:
|
|
|
|
self.assertEqual(
|
|
|
|
im.info[header],
|
|
|
|
reread.info[header]
|
|
|
|
)
|
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_palette_handling(self):
|
|
|
|
# see https://github.com/python-pillow/Pillow/issues/513
|
2014-03-05 10:29:55 +04:00
|
|
|
|
2014-09-04 09:44:46 +04:00
|
|
|
im = Image.open(TEST_GIF)
|
2014-06-10 13:10:47 +04:00
|
|
|
im = im.convert('RGB')
|
2014-03-05 10:02:03 +04:00
|
|
|
|
2014-11-28 01:41:56 +03:00
|
|
|
im = im.resize((100, 100), Image.LANCZOS)
|
2014-06-10 13:10:47 +04:00
|
|
|
im2 = im.convert('P', palette=Image.ADAPTIVE, colors=256)
|
2014-06-03 14:02:44 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
f = self.tempfile('temp.gif')
|
|
|
|
im2.save(f, optimize=True)
|
2014-03-05 10:02:03 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
reloaded = Image.open(f)
|
2014-03-05 10:02:03 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assert_image_similar(im, reloaded.convert('RGB'), 10)
|
2014-06-03 14:02:44 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_palette_434(self):
|
|
|
|
# see https://github.com/python-pillow/Pillow/issues/434
|
2014-06-03 14:02:44 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def roundtrip(im, *args, **kwargs):
|
|
|
|
out = self.tempfile('temp.gif')
|
2015-05-13 09:39:25 +03:00
|
|
|
im.copy().save(out, *args, **kwargs)
|
2014-06-10 13:10:47 +04:00
|
|
|
reloaded = Image.open(out)
|
2014-03-05 10:29:55 +04:00
|
|
|
|
2015-05-13 09:39:25 +03:00
|
|
|
return reloaded
|
2014-03-05 10:29:55 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
orig = "Tests/images/test.colors.gif"
|
|
|
|
im = Image.open(orig)
|
2014-03-05 10:29:55 +04:00
|
|
|
|
2015-05-13 09:39:25 +03:00
|
|
|
self.assert_image_similar(im, roundtrip(im), 1)
|
|
|
|
self.assert_image_similar(im, roundtrip(im, optimize=True), 1)
|
2014-03-05 10:29:55 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
im = im.convert("RGB")
|
|
|
|
# check automatic P conversion
|
2015-05-13 09:39:25 +03:00
|
|
|
reloaded = roundtrip(im).convert('RGB')
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assert_image_equal(im, reloaded)
|
2014-06-03 14:02:44 +04:00
|
|
|
|
2014-06-28 02:12:37 +04:00
|
|
|
@unittest.skipUnless(netpbm_available(), "netpbm not available")
|
2014-06-27 07:37:49 +04:00
|
|
|
def test_save_netpbm_bmp_mode(self):
|
2014-09-04 10:42:31 +04:00
|
|
|
img = Image.open(TEST_GIF).convert("RGB")
|
2014-06-27 07:37:49 +04:00
|
|
|
|
|
|
|
tempfile = self.tempfile("temp.gif")
|
|
|
|
GifImagePlugin._save_netpbm(img, 0, tempfile)
|
|
|
|
self.assert_image_similar(img, Image.open(tempfile).convert("RGB"), 0)
|
|
|
|
|
2014-06-28 02:12:37 +04:00
|
|
|
@unittest.skipUnless(netpbm_available(), "netpbm not available")
|
2014-06-27 07:37:49 +04:00
|
|
|
def test_save_netpbm_l_mode(self):
|
2014-09-04 10:42:31 +04:00
|
|
|
img = Image.open(TEST_GIF).convert("L")
|
2014-06-27 07:37:49 +04:00
|
|
|
|
|
|
|
tempfile = self.tempfile("temp.gif")
|
|
|
|
GifImagePlugin._save_netpbm(img, 0, tempfile)
|
|
|
|
self.assert_image_similar(img, Image.open(tempfile).convert("L"), 0)
|
|
|
|
|
2014-07-07 22:47:18 +04:00
|
|
|
def test_seek(self):
|
|
|
|
img = Image.open("Tests/images/dispose_none.gif")
|
|
|
|
framecount = 0
|
|
|
|
try:
|
|
|
|
while True:
|
|
|
|
framecount += 1
|
2014-08-26 17:47:10 +04:00
|
|
|
img.seek(img.tell() + 1)
|
2014-07-07 22:47:18 +04:00
|
|
|
except EOFError:
|
2014-07-07 23:49:45 +04:00
|
|
|
self.assertEqual(framecount, 5)
|
2014-07-07 22:47:18 +04:00
|
|
|
|
2015-06-07 18:01:34 +03:00
|
|
|
def test_n_frames(self):
|
2017-08-18 13:20:27 +03:00
|
|
|
for path, n_frames in [
|
|
|
|
[TEST_GIF, 1],
|
|
|
|
['Tests/images/iss634.gif', 42]
|
|
|
|
]:
|
|
|
|
# Test is_animated before n_frames
|
|
|
|
im = Image.open(path)
|
|
|
|
self.assertEqual(im.is_animated, n_frames != 1)
|
|
|
|
|
|
|
|
# Test is_animated after n_frames
|
|
|
|
im = Image.open(path)
|
|
|
|
self.assertEqual(im.n_frames, n_frames)
|
|
|
|
self.assertEqual(im.is_animated, n_frames != 1)
|
2015-06-18 17:49:18 +03:00
|
|
|
|
|
|
|
def test_eoferror(self):
|
|
|
|
im = Image.open(TEST_GIF)
|
|
|
|
n_frames = im.n_frames
|
2017-09-06 06:19:33 +03:00
|
|
|
|
|
|
|
# Test seeking past the last frame
|
|
|
|
self.assertRaises(EOFError, im.seek, n_frames)
|
|
|
|
self.assertLess(im.tell(), n_frames)
|
|
|
|
|
|
|
|
# Test that seeking to the last frame does not raise an error
|
|
|
|
im.seek(n_frames-1)
|
2015-06-07 18:01:34 +03:00
|
|
|
|
2014-07-07 22:47:18 +04:00
|
|
|
def test_dispose_none(self):
|
|
|
|
img = Image.open("Tests/images/dispose_none.gif")
|
|
|
|
try:
|
|
|
|
while True:
|
2014-08-26 17:47:10 +04:00
|
|
|
img.seek(img.tell() + 1)
|
2014-07-07 23:49:45 +04:00
|
|
|
self.assertEqual(img.disposal_method, 1)
|
2014-07-07 22:47:18 +04:00
|
|
|
except EOFError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_dispose_background(self):
|
|
|
|
img = Image.open("Tests/images/dispose_bgnd.gif")
|
|
|
|
try:
|
|
|
|
while True:
|
2014-08-26 17:47:10 +04:00
|
|
|
img.seek(img.tell() + 1)
|
2014-07-07 23:49:45 +04:00
|
|
|
self.assertEqual(img.disposal_method, 2)
|
2014-07-07 22:47:18 +04:00
|
|
|
except EOFError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_dispose_previous(self):
|
|
|
|
img = Image.open("Tests/images/dispose_prev.gif")
|
|
|
|
try:
|
|
|
|
while True:
|
2014-08-26 17:47:10 +04:00
|
|
|
img.seek(img.tell() + 1)
|
2014-07-07 23:49:45 +04:00
|
|
|
self.assertEqual(img.disposal_method, 3)
|
2014-07-07 22:47:18 +04:00
|
|
|
except EOFError:
|
|
|
|
pass
|
|
|
|
|
2017-01-31 10:22:54 +03:00
|
|
|
def test_save_dispose(self):
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im_list = [
|
|
|
|
Image.new('L', (100, 100), '#000'),
|
|
|
|
Image.new('L', (100, 100), '#111'),
|
|
|
|
Image.new('L', (100, 100), '#222'),
|
|
|
|
]
|
|
|
|
for method in range(0,4):
|
|
|
|
im_list[0].save(
|
|
|
|
out,
|
|
|
|
save_all=True,
|
|
|
|
append_images=im_list[1:],
|
|
|
|
disposal=method
|
|
|
|
)
|
|
|
|
img = Image.open(out)
|
|
|
|
try:
|
|
|
|
while True:
|
|
|
|
img.seek(img.tell() + 1)
|
|
|
|
self.assertEqual(img.disposal_method, method)
|
|
|
|
except EOFError:
|
|
|
|
pass
|
|
|
|
|
2014-07-07 22:47:18 +04:00
|
|
|
def test_iss634(self):
|
|
|
|
img = Image.open("Tests/images/iss634.gif")
|
|
|
|
# seek to the second frame
|
2014-08-26 17:47:10 +04:00
|
|
|
img.seek(img.tell() + 1)
|
|
|
|
# all transparent pixels should be replaced with the color from the
|
|
|
|
# first frame
|
2014-07-07 23:49:45 +04:00
|
|
|
self.assertEqual(img.histogram()[img.info['transparency']], 0)
|
2014-07-07 22:47:18 +04:00
|
|
|
|
2015-04-04 03:45:30 +03:00
|
|
|
def test_duration(self):
|
|
|
|
duration = 1000
|
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
2017-01-28 03:45:59 +03:00
|
|
|
im = Image.new('L', (100, 100), '#000')
|
|
|
|
im.save(out, duration=duration)
|
2015-04-04 03:45:30 +03:00
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
self.assertEqual(reread.info['duration'], duration)
|
|
|
|
|
2016-12-27 13:42:58 +03:00
|
|
|
def test_multiple_duration(self):
|
|
|
|
duration_list = [1000, 2000, 3000]
|
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im_list = [
|
|
|
|
Image.new('L', (100, 100), '#000'),
|
|
|
|
Image.new('L', (100, 100), '#111'),
|
2016-12-29 03:28:58 +03:00
|
|
|
Image.new('L', (100, 100), '#222')
|
2016-12-27 13:42:58 +03:00
|
|
|
]
|
2016-12-27 14:04:37 +03:00
|
|
|
|
2017-04-20 14:14:23 +03:00
|
|
|
# duration as list
|
2016-12-27 13:42:58 +03:00
|
|
|
im_list[0].save(
|
|
|
|
out,
|
|
|
|
save_all=True,
|
|
|
|
append_images=im_list[1:],
|
|
|
|
duration=duration_list
|
|
|
|
)
|
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
for duration in duration_list:
|
|
|
|
self.assertEqual(reread.info['duration'], duration)
|
|
|
|
try:
|
|
|
|
reread.seek(reread.tell() + 1)
|
|
|
|
except EOFError:
|
|
|
|
pass
|
|
|
|
|
2016-12-27 14:04:37 +03:00
|
|
|
# duration as tuple
|
|
|
|
im_list[0].save(
|
|
|
|
out,
|
|
|
|
save_all=True,
|
|
|
|
append_images=im_list[1:],
|
|
|
|
duration=tuple(duration_list)
|
|
|
|
)
|
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
for duration in duration_list:
|
|
|
|
self.assertEqual(reread.info['duration'], duration)
|
|
|
|
try:
|
|
|
|
reread.seek(reread.tell() + 1)
|
|
|
|
except EOFError:
|
|
|
|
pass
|
|
|
|
|
2016-12-29 03:28:58 +03:00
|
|
|
def test_identical_frames(self):
|
|
|
|
duration_list = [1000, 1500, 2000, 4000]
|
2016-12-27 14:04:37 +03:00
|
|
|
|
2016-12-29 03:28:58 +03:00
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im_list = [
|
|
|
|
Image.new('L', (100, 100), '#000'),
|
|
|
|
Image.new('L', (100, 100), '#000'),
|
|
|
|
Image.new('L', (100, 100), '#000'),
|
|
|
|
Image.new('L', (100, 100), '#111')
|
|
|
|
]
|
|
|
|
|
2017-04-20 14:14:23 +03:00
|
|
|
# duration as list
|
2016-12-29 03:28:58 +03:00
|
|
|
im_list[0].save(
|
|
|
|
out,
|
|
|
|
save_all=True,
|
|
|
|
append_images=im_list[1:],
|
|
|
|
duration=duration_list
|
|
|
|
)
|
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
# Assert that the first three frames were combined
|
|
|
|
self.assertEqual(reread.n_frames, 2)
|
|
|
|
|
|
|
|
# Assert that the new duration is the total of the identical frames
|
|
|
|
self.assertEqual(reread.info['duration'], 4500)
|
2016-12-27 14:04:37 +03:00
|
|
|
|
2015-04-04 03:45:30 +03:00
|
|
|
def test_number_of_loops(self):
|
|
|
|
number_of_loops = 2
|
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
2017-01-28 03:45:59 +03:00
|
|
|
im = Image.new('L', (100, 100), '#000')
|
|
|
|
im.save(out, loop=number_of_loops)
|
2015-04-04 03:45:30 +03:00
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
self.assertEqual(reread.info['loop'], number_of_loops)
|
2014-03-05 10:29:55 +04:00
|
|
|
|
2015-06-11 04:10:05 +03:00
|
|
|
def test_background(self):
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im = Image.new('L', (100, 100), '#000')
|
|
|
|
im.info['background'] = 1
|
|
|
|
im.save(out)
|
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
self.assertEqual(reread.info['background'], im.info['background'])
|
|
|
|
|
2016-05-07 06:57:40 +03:00
|
|
|
def test_comment(self):
|
|
|
|
im = Image.open(TEST_GIF)
|
|
|
|
self.assertEqual(im.info['comment'], b"File written by Adobe Photoshop\xa8 4.0")
|
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im = Image.new('L', (100, 100), '#000')
|
|
|
|
im.info['comment'] = b"Test comment text"
|
|
|
|
im.save(out)
|
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
self.assertEqual(reread.info['comment'], im.info['comment'])
|
|
|
|
|
2015-08-21 15:10:13 +03:00
|
|
|
def test_version(self):
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
|
2017-09-01 13:36:51 +03:00
|
|
|
def assertVersionAfterSave(im, version):
|
|
|
|
im.save(out)
|
|
|
|
reread = Image.open(out)
|
|
|
|
self.assertEqual(reread.info["version"], version)
|
|
|
|
|
2015-08-21 15:10:13 +03:00
|
|
|
# Test that GIF87a is used by default
|
|
|
|
im = Image.new('L', (100, 100), '#000')
|
2017-09-01 13:36:51 +03:00
|
|
|
assertVersionAfterSave(im, b"GIF87a")
|
|
|
|
|
|
|
|
# Test setting the version to 89a
|
|
|
|
im = Image.new('L', (100, 100), '#000')
|
|
|
|
im.info["version"] = b"89a"
|
|
|
|
assertVersionAfterSave(im, b"GIF89a")
|
2015-08-21 15:10:13 +03:00
|
|
|
|
|
|
|
# Test that adding a GIF89a feature changes the version
|
|
|
|
im.info["transparency"] = 1
|
2017-09-01 13:36:51 +03:00
|
|
|
assertVersionAfterSave(im, b"GIF89a")
|
2015-08-21 15:10:13 +03:00
|
|
|
|
|
|
|
# Test that a GIF87a image is also saved in that format
|
2016-05-07 06:57:40 +03:00
|
|
|
im = Image.open("Tests/images/test.colors.gif")
|
2017-09-01 13:36:51 +03:00
|
|
|
assertVersionAfterSave(im, b"GIF87a")
|
2015-08-21 15:10:13 +03:00
|
|
|
|
|
|
|
# Test that a GIF89a image is also saved in that format
|
2016-10-22 20:55:50 +03:00
|
|
|
im.info["version"] = b"GIF89a"
|
2017-09-01 13:36:51 +03:00
|
|
|
assertVersionAfterSave(im, b"GIF87a")
|
2015-08-21 15:10:13 +03:00
|
|
|
|
2016-09-11 05:04:01 +03:00
|
|
|
def test_append_images(self):
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
|
|
|
|
# Test appending single frame images
|
|
|
|
im = Image.new('RGB', (100, 100), '#f00')
|
2017-11-04 02:46:15 +03:00
|
|
|
ims = [Image.new('RGB', (100, 100), color) for color
|
|
|
|
in ['#0f0', '#00f']]
|
|
|
|
im.copy().save(out, save_all=True, append_images=ims)
|
|
|
|
|
|
|
|
reread = Image.open(out)
|
|
|
|
self.assertEqual(reread.n_frames, 3)
|
|
|
|
|
|
|
|
# Tests appending using a generator
|
|
|
|
def imGenerator(ims):
|
|
|
|
for im in ims:
|
|
|
|
yield im
|
|
|
|
im.save(out, save_all=True, append_images=imGenerator(ims))
|
2016-09-11 05:04:01 +03:00
|
|
|
|
|
|
|
reread = Image.open(out)
|
|
|
|
self.assertEqual(reread.n_frames, 3)
|
|
|
|
|
|
|
|
# Tests appending single and multiple frame images
|
|
|
|
im = Image.open("Tests/images/dispose_none.gif")
|
|
|
|
ims = [Image.open("Tests/images/dispose_prev.gif")]
|
|
|
|
im.save(out, save_all=True, append_images=ims)
|
|
|
|
|
|
|
|
reread = Image.open(out)
|
|
|
|
self.assertEqual(reread.n_frames, 10)
|
2015-08-21 15:10:13 +03:00
|
|
|
|
2016-12-27 14:30:47 +03:00
|
|
|
def test_transparent_optimize(self):
|
|
|
|
# from issue #2195, if the transparent color is incorrectly
|
2017-01-26 11:39:59 +03:00
|
|
|
# optimized out, gif loses transparency
|
|
|
|
# Need a palette that isn't using the 0 color, and one
|
|
|
|
# that's > 128 items where the transparent color is actually
|
|
|
|
# the top palette entry to trigger the bug.
|
2016-12-27 14:30:47 +03:00
|
|
|
|
|
|
|
from PIL import ImagePalette
|
|
|
|
|
2017-04-20 14:14:23 +03:00
|
|
|
data = bytes(bytearray(range(1, 254)))
|
2016-12-27 14:30:47 +03:00
|
|
|
palette = ImagePalette.ImagePalette("RGB", list(range(256))*3)
|
|
|
|
|
2017-04-20 14:14:23 +03:00
|
|
|
im = Image.new('L', (253, 1))
|
2016-12-27 14:30:47 +03:00
|
|
|
im.frombytes(data)
|
|
|
|
im.putpalette(palette)
|
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im.save(out, transparency=253)
|
|
|
|
reloaded = Image.open(out)
|
|
|
|
|
|
|
|
self.assertEqual(reloaded.info['transparency'], 253)
|
2017-03-03 13:31:58 +03:00
|
|
|
|
2017-01-26 11:39:59 +03:00
|
|
|
def test_bbox(self):
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
|
2017-04-20 14:14:23 +03:00
|
|
|
im = Image.new('RGB', (100, 100), '#fff')
|
|
|
|
ims = [Image.new("RGB", (100, 100), '#000')]
|
2017-01-26 11:39:59 +03:00
|
|
|
im.save(out, save_all=True, append_images=ims)
|
|
|
|
|
|
|
|
reread = Image.open(out)
|
|
|
|
self.assertEqual(reread.n_frames, 2)
|
|
|
|
|
2017-03-03 19:25:01 +03:00
|
|
|
def test_palette_save_L(self):
|
|
|
|
# generate an L mode image with a separate palette
|
2017-04-20 14:14:23 +03:00
|
|
|
|
2017-03-03 19:25:01 +03:00
|
|
|
im = hopper('P')
|
2017-03-07 01:46:55 +03:00
|
|
|
im_l = Image.frombytes('L', im.size, im.tobytes())
|
|
|
|
palette = bytes(bytearray(im.getpalette()))
|
2017-03-03 19:25:01 +03:00
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im_l.save(out, palette=palette)
|
|
|
|
|
|
|
|
reloaded = Image.open(out)
|
|
|
|
|
2017-03-07 01:46:55 +03:00
|
|
|
self.assert_image_equal(reloaded.convert('RGB'), im.convert('RGB'))
|
2017-04-20 14:14:23 +03:00
|
|
|
|
2017-03-03 19:25:01 +03:00
|
|
|
def test_palette_save_P(self):
|
|
|
|
# pass in a different palette, then construct what the image
|
|
|
|
# would look like.
|
2017-03-07 01:46:55 +03:00
|
|
|
# Forcing a non-straight grayscale palette.
|
|
|
|
|
|
|
|
im = hopper('P')
|
|
|
|
palette = bytes(bytearray([255-i//3 for i in range(768)]))
|
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im.save(out, palette=palette)
|
|
|
|
|
|
|
|
reloaded = Image.open(out)
|
|
|
|
im.putpalette(palette)
|
|
|
|
self.assert_image_equal(reloaded, im)
|
|
|
|
|
|
|
|
def test_palette_save_ImagePalette(self):
|
|
|
|
# pass in a different palette, as an ImagePalette.ImagePalette
|
|
|
|
# effectively the same as test_palette_save_P
|
2017-03-03 19:25:01 +03:00
|
|
|
|
|
|
|
im = hopper('P')
|
2017-03-07 01:46:55 +03:00
|
|
|
palette = ImagePalette.ImagePalette('RGB', list(range(256))[::-1]*3)
|
2017-03-03 19:25:01 +03:00
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
2017-03-07 01:46:55 +03:00
|
|
|
im.save(out, palette=palette)
|
2017-03-03 19:25:01 +03:00
|
|
|
|
|
|
|
reloaded = Image.open(out)
|
|
|
|
im.putpalette(palette)
|
|
|
|
self.assert_image_equal(reloaded, im)
|
2016-12-27 14:30:47 +03:00
|
|
|
|
2017-03-03 19:38:30 +03:00
|
|
|
def test_save_I(self):
|
|
|
|
# Test saving something that would trigger the auto-convert to 'L'
|
|
|
|
|
|
|
|
im = hopper('I')
|
|
|
|
|
|
|
|
out = self.tempfile('temp.gif')
|
|
|
|
im.save(out)
|
|
|
|
|
|
|
|
reloaded = Image.open(out)
|
|
|
|
self.assert_image_equal(reloaded.convert('L'), im.convert('L'))
|
|
|
|
|
2017-03-07 12:52:31 +03:00
|
|
|
def test_getdata(self):
|
|
|
|
# test getheader/getdata against legacy values
|
|
|
|
# Create a 'P' image with holes in the palette
|
2017-03-07 13:36:58 +03:00
|
|
|
im = Image._wedge().resize((16, 16))
|
2017-03-07 12:52:31 +03:00
|
|
|
im.putpalette(ImagePalette.ImagePalette('RGB'))
|
2017-03-07 13:36:58 +03:00
|
|
|
im.info = {'background': 0}
|
2017-04-20 14:14:23 +03:00
|
|
|
|
2017-03-07 12:52:31 +03:00
|
|
|
passed_palette = bytes(bytearray([255-i//3 for i in range(768)]))
|
|
|
|
|
|
|
|
GifImagePlugin._FORCE_OPTIMIZE = True
|
|
|
|
try:
|
|
|
|
h = GifImagePlugin.getheader(im, passed_palette)
|
|
|
|
d = GifImagePlugin.getdata(im)
|
|
|
|
|
2017-03-07 13:36:58 +03:00
|
|
|
import pickle
|
2017-03-07 12:52:31 +03:00
|
|
|
# Enable to get target values on pre-refactor version
|
2017-04-20 14:14:23 +03:00
|
|
|
# with open('Tests/images/gif_header_data.pkl', 'wb') as f:
|
2017-03-07 13:36:58 +03:00
|
|
|
# pickle.dump((h, d), f, 1)
|
2017-03-07 12:52:31 +03:00
|
|
|
with open('Tests/images/gif_header_data.pkl', 'rb') as f:
|
2017-03-07 13:36:58 +03:00
|
|
|
(h_target, d_target) = pickle.load(f)
|
2017-04-20 14:14:23 +03:00
|
|
|
|
2017-03-07 12:52:31 +03:00
|
|
|
self.assertEqual(h, h_target)
|
|
|
|
self.assertEqual(d, d_target)
|
|
|
|
finally:
|
|
|
|
GifImagePlugin._FORCE_OPTIMIZE = False
|
|
|
|
|
2017-10-25 16:52:33 +03:00
|
|
|
def test_lzw_bits(self):
|
|
|
|
# see https://github.com/python-pillow/Pillow/issues/2811
|
|
|
|
im = Image.open('Tests/images/issue_2811.gif')
|
|
|
|
|
|
|
|
self.assertEqual(im.tile[0][3][0], 11) # LZW bits
|
|
|
|
# codec error prepatch
|
|
|
|
im.load()
|
2017-03-07 12:52:31 +03:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|