mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-05 14:10:52 +03:00
Not too convinced of the size fix. While it works against my file, I'm not sure someone would have accidentally been an index off and not noticed.
23 lines
499 B
Python
23 lines
499 B
Python
from tester import *
|
|
|
|
from PIL import Image, TarIO
|
|
|
|
# sample ppm stream
|
|
tarfile = "Images/lena.tar"
|
|
|
|
def test_sanity():
|
|
tar = TarIO.TarIO(tarfile, 'lena.png')
|
|
im = Image.open(tar)
|
|
im.load()
|
|
assert_equal(im.mode, "RGB")
|
|
assert_equal(im.size, (128, 128))
|
|
assert_equal(im.format, "PNG")
|
|
|
|
tar = TarIO.TarIO(tarfile, 'lena.jpg')
|
|
im = Image.open(tar)
|
|
im.load()
|
|
assert_equal(im.mode, "RGB")
|
|
assert_equal(im.size, (128, 128))
|
|
assert_equal(im.format, "JPEG")
|
|
|