2023-12-21 14:13:31 +03:00
|
|
|
from __future__ import annotations
|
2024-01-20 14:23:03 +03:00
|
|
|
|
2020-01-27 14:46:52 +03:00
|
|
|
from .helper import hopper
|
|
|
|
|
|
|
|
|
2024-01-25 14:18:46 +03:00
|
|
|
def test_getcolors() -> None:
|
|
|
|
def getcolors(mode: str, limit: int | None = None) -> int | None:
|
2020-01-27 14:46:52 +03:00
|
|
|
im = hopper(mode)
|
|
|
|
if limit:
|
|
|
|
colors = im.getcolors(limit)
|
|
|
|
else:
|
|
|
|
colors = im.getcolors()
|
|
|
|
if colors:
|
|
|
|
return len(colors)
|
|
|
|
return None
|
|
|
|
|
|
|
|
assert getcolors("1") == 2
|
|
|
|
assert getcolors("L") == 255
|
|
|
|
assert getcolors("I") == 255
|
|
|
|
assert getcolors("F") == 255
|
2022-06-18 11:09:41 +03:00
|
|
|
assert getcolors("P") == 96 # fixed palette
|
2020-01-27 14:46:52 +03:00
|
|
|
assert getcolors("RGB") is None
|
|
|
|
assert getcolors("RGBA") is None
|
|
|
|
assert getcolors("CMYK") is None
|
|
|
|
assert getcolors("YCbCr") is None
|
|
|
|
|
|
|
|
assert getcolors("L", 128) is None
|
|
|
|
assert getcolors("L", 1024) == 255
|
|
|
|
|
|
|
|
assert getcolors("RGB", 8192) is None
|
|
|
|
assert getcolors("RGB", 16384) == 10100
|
|
|
|
assert getcolors("RGB", 100000) == 10100
|
|
|
|
|
|
|
|
assert getcolors("RGBA", 16384) == 10100
|
|
|
|
assert getcolors("CMYK", 16384) == 10100
|
|
|
|
assert getcolors("YCbCr", 16384) == 9329
|
|
|
|
|
|
|
|
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2024-01-25 14:18:46 +03:00
|
|
|
def test_pack() -> None:
|
2020-01-27 14:46:52 +03:00
|
|
|
# Pack problems for small tables (@PIL209)
|
|
|
|
|
|
|
|
im = hopper().quantize(3).convert("RGB")
|
|
|
|
|
|
|
|
expected = [
|
|
|
|
(4039, (172, 166, 181)),
|
|
|
|
(4385, (124, 113, 134)),
|
|
|
|
(7960, (31, 20, 33)),
|
|
|
|
]
|
|
|
|
|
|
|
|
A = im.getcolors(maxcolors=2)
|
|
|
|
assert A is None
|
|
|
|
|
|
|
|
A = im.getcolors(maxcolors=3)
|
|
|
|
A.sort()
|
|
|
|
assert A == expected
|
|
|
|
|
|
|
|
A = im.getcolors(maxcolors=4)
|
|
|
|
A.sort()
|
|
|
|
assert A == expected
|
|
|
|
|
|
|
|
A = im.getcolors(maxcolors=8)
|
|
|
|
A.sort()
|
|
|
|
assert A == expected
|
|
|
|
|
|
|
|
A = im.getcolors(maxcolors=16)
|
|
|
|
A.sort()
|
|
|
|
assert A == expected
|