Pillow/test/test_image_frombytes.py
2014-06-09 20:36:40 -04:00

19 lines
343 B
Python

from test.helper import unittest, PillowTestCase, lena
from PIL import Image
class TestImageFromBytes(PillowTestCase):
def test_sanity(self):
im1 = lena()
im2 = Image.frombytes(im1.mode, im1.size, im1.tobytes())
self.assert_image_equal(im1, im2)
if __name__ == '__main__':
unittest.main()
# End of file