mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
31 lines
866 B
Python
31 lines
866 B
Python
from __future__ import annotations
|
|
|
|
from PIL import Image
|
|
|
|
from .helper import hopper
|
|
|
|
|
|
def test_sanity() -> None:
|
|
data = hopper().getdata()
|
|
|
|
len(data)
|
|
list(data)
|
|
|
|
assert data[0] == (20, 20, 70)
|
|
|
|
|
|
def test_roundtrip() -> None:
|
|
def getdata(mode: str) -> tuple[float | tuple[int, ...], int, int]:
|
|
im = hopper(mode).resize((32, 30), Image.Resampling.NEAREST)
|
|
data = im.getdata()
|
|
return data[0], len(data), len(list(data))
|
|
|
|
assert getdata("1") == (0, 960, 960)
|
|
assert getdata("L") == (17, 960, 960)
|
|
assert getdata("I") == (17, 960, 960)
|
|
assert getdata("F") == (17.0, 960, 960)
|
|
assert getdata("RGB") == ((11, 13, 52), 960, 960)
|
|
assert getdata("RGBA") == ((11, 13, 52, 255), 960, 960)
|
|
assert getdata("CMYK") == ((244, 242, 203, 0), 960, 960)
|
|
assert getdata("YCbCr") == ((16, 147, 123), 960, 960)
|