Pillow/Tests/test_image_array.py

60 lines
2.3 KiB
Python
Raw Normal View History

from PIL import Image
from .helper import PillowTestCase, hopper
im = hopper().resize((128, 100))
2014-06-10 13:10:47 +04:00
class TestImageArray(PillowTestCase):
2014-06-10 13:10:47 +04:00
def test_toarray(self):
def test(mode):
ai = im.convert(mode).__array_interface__
2019-06-13 18:54:24 +03:00
return ai["version"], ai["shape"], ai["typestr"], len(ai["data"])
# self.assertEqual(test("1"), (3, (100, 128), '|b1', 1600))
2019-06-13 18:54:24 +03:00
self.assertEqual(test("L"), (3, (100, 128), "|u1", 12800))
2014-06-10 13:10:47 +04:00
# FIXME: wrong?
2019-06-13 18:54:24 +03:00
self.assertEqual(test("I"), (3, (100, 128), Image._ENDIAN + "i4", 51200))
2014-06-10 13:10:47 +04:00
# FIXME: wrong?
2019-06-13 18:54:24 +03:00
self.assertEqual(test("F"), (3, (100, 128), Image._ENDIAN + "f4", 51200))
2014-06-10 13:10:47 +04:00
2019-06-13 18:54:24 +03:00
self.assertEqual(test("LA"), (3, (100, 128, 2), "|u1", 25600))
self.assertEqual(test("RGB"), (3, (100, 128, 3), "|u1", 38400))
self.assertEqual(test("RGBA"), (3, (100, 128, 4), "|u1", 51200))
self.assertEqual(test("RGBX"), (3, (100, 128, 4), "|u1", 51200))
2014-06-10 13:10:47 +04:00
def test_fromarray(self):
class Wrapper:
""" Class with API matching Image.fromarray """
def __init__(self, img, arr_params):
self.img = img
self.__array_interface__ = arr_params
def tobytes(self):
return self.img.tobytes()
2014-06-10 13:10:47 +04:00
def test(mode):
i = im.convert(mode)
a = i.__array_interface__
2016-08-31 13:12:07 +03:00
a["strides"] = 1 # pretend it's non-contiguous
# Make wrapper instance for image, new array interface
wrapped = Wrapper(i, a)
out = Image.fromarray(wrapped)
2014-06-10 13:10:47 +04:00
return out.mode, out.size, list(i.getdata()) == list(out.getdata())
2014-06-10 13:10:47 +04:00
# self.assertEqual(test("1"), ("1", (128, 100), True))
self.assertEqual(test("L"), ("L", (128, 100), True))
self.assertEqual(test("I"), ("I", (128, 100), True))
self.assertEqual(test("F"), ("F", (128, 100), True))
2016-04-28 17:30:43 +03:00
self.assertEqual(test("LA"), ("LA", (128, 100), True))
2014-06-10 13:10:47 +04:00
self.assertEqual(test("RGB"), ("RGB", (128, 100), True))
self.assertEqual(test("RGBA"), ("RGBA", (128, 100), True))
self.assertEqual(test("RGBX"), ("RGBA", (128, 100), True))
2019-10-29 23:23:08 +03:00
# Test mode is None with no "typestr" in the array interface
with self.assertRaises(TypeError):
wrapped = Wrapper(test("L"), {"shape": (100, 128)})
Image.fromarray(wrapped)