mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
19 lines
354 B
Python
19 lines
354 B
Python
from helper import unittest, PillowTestCase, tearDownModule, 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
|