mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
34 lines
679 B
Python
34 lines
679 B
Python
from helper import unittest, PillowTestCase, hopper, tostring
|
|
|
|
from PIL import Image
|
|
from PIL import ImageFileIO
|
|
|
|
|
|
class TestImageFileIo(PillowTestCase):
|
|
|
|
def test_fileio(self):
|
|
|
|
class DumbFile(object):
|
|
def __init__(self, data):
|
|
self.data = data
|
|
|
|
def read(self, bytes=None):
|
|
assert(bytes is None)
|
|
return self.data
|
|
|
|
def close(self):
|
|
pass
|
|
|
|
im1 = hopper()
|
|
|
|
io = ImageFileIO.ImageFileIO(DumbFile(tostring(im1, "PPM")))
|
|
|
|
im2 = Image.open(io)
|
|
self.assert_image_equal(im1, im2)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|
|
# End of file
|