Pillow/Tests/test_image_frombytes.py
2019-06-13 18:54:24 +03:00

15 lines
370 B
Python

from .helper import PillowTestCase, hopper
from PIL import Image
class TestImageFromBytes(PillowTestCase):
def test_sanity(self):
im1 = hopper()
im2 = Image.frombytes(im1.mode, im1.size, im1.tobytes())
self.assert_image_equal(im1, im2)
def test_not_implemented(self):
self.assertRaises(NotImplementedError, Image.fromstring)