Pillow/Tests/test_image_getextrema.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
867 B
Python
Raw Normal View History

from __future__ import annotations
2024-01-20 14:23:03 +03:00
from PIL import Image
from .helper import hopper
def test_extrema() -> None:
2024-06-01 14:31:53 +03:00
def extrema(mode: str) -> tuple[float, float] | tuple[tuple[int, int], ...]:
2020-01-27 14:46:52 +03:00
return hopper(mode).getextrema()
2014-06-10 13:10:47 +04:00
2020-01-27 14:46:52 +03:00
assert extrema("1") == (0, 255)
assert extrema("L") == (1, 255)
assert extrema("I") == (1, 255)
assert extrema("F") == (1, 255)
assert extrema("P") == (0, 225) # fixed palette
assert extrema("RGB") == ((0, 255), (0, 255), (0, 255))
assert extrema("RGBA") == ((0, 255), (0, 255), (0, 255), (255, 255))
assert extrema("CMYK") == ((0, 255), (0, 255), (0, 255), (0, 0))
assert extrema("I;16") == (1, 255)
2020-01-27 14:46:52 +03:00
def test_true_16() -> None:
2020-01-27 14:46:52 +03:00
with Image.open("Tests/images/16_bit_noise.tif") as im:
assert im.mode == "I;16"
extrema = im.getextrema()
assert extrema == (106, 285)