mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 13:16:52 +03:00
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")
|
||
|
|