2012-10-16 00:26:38 +04:00
|
|
|
from tester import *
|
|
|
|
|
|
|
|
from PIL import Image
|
|
|
|
|
|
|
|
codecs = dir(Image.core)
|
|
|
|
|
|
|
|
if "gif_encoder" not in codecs or "gif_decoder" not in codecs:
|
|
|
|
skip("gif support not available") # can this happen?
|
|
|
|
|
|
|
|
# sample gif stream
|
|
|
|
file = "Images/lena.gif"
|
2013-05-23 21:02:19 +04:00
|
|
|
with open(file, "rb") as f:
|
|
|
|
data = f.read()
|
2012-10-16 00:26:38 +04:00
|
|
|
|
|
|
|
def test_sanity():
|
|
|
|
im = Image.open(file)
|
|
|
|
im.load()
|
|
|
|
assert_equal(im.mode, "P")
|
|
|
|
assert_equal(im.size, (128, 128))
|
|
|
|
assert_equal(im.format, "GIF")
|
|
|
|
|
|
|
|
def test_optimize():
|
|
|
|
def test(optimize):
|
|
|
|
im = Image.new("L", (1, 1), 0)
|
|
|
|
file = BytesIO()
|
|
|
|
im.save(file, "GIF", optimize=optimize)
|
|
|
|
return len(file.getvalue())
|
|
|
|
assert_equal(test(0), 800)
|
2013-05-23 17:24:06 +04:00
|
|
|
assert_equal(test(1), 38)
|
2013-11-08 04:39:36 +04:00
|
|
|
|
|
|
|
def test_roundtrip():
|
|
|
|
out = tempfile('temp.gif')
|
|
|
|
im = lena()
|
|
|
|
im.save(out)
|
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
assert_image_similar(reread.convert('RGB'), im, 50)
|
|
|
|
|
2013-11-08 04:39:57 +04:00
|
|
|
def test_roundtrip2():
|
|
|
|
#see https://github.com/python-imaging/Pillow/issues/403
|
|
|
|
out = 'temp.gif'#tempfile('temp.gif')
|
|
|
|
im = Image.open('Images/lena.gif')
|
|
|
|
im2 = im.copy()
|
|
|
|
im2.save(out)
|
|
|
|
reread = Image.open(out)
|
|
|
|
|
|
|
|
assert_image_similar(reread.convert('RGB'), lena(), 50)
|
|
|
|
|
2014-03-05 10:02:03 +04:00
|
|
|
def test_palette_handling():
|
|
|
|
# see https://github.com/python-imaging/Pillow/issues/513
|
|
|
|
|
|
|
|
im = Image.open('Images/lena.gif')
|
|
|
|
im = im.convert('RGB')
|
|
|
|
|
|
|
|
im = im.resize((100,100), Image.ANTIALIAS)
|
|
|
|
im2 = im.convert('P', palette=Image.ADAPTIVE, colors=256)
|
|
|
|
|
|
|
|
f = tempfile('temp.gif')
|
|
|
|
im2.save(f, optimize=True)
|
|
|
|
|
|
|
|
reloaded = Image.open(f)
|
|
|
|
|
|
|
|
assert_image_similar(im, reloaded.convert('RGB'), 10)
|
|
|
|
|
|
|
|
|