mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
added p2pa test
This commit is contained in:
parent
6a071f81d7
commit
9a14be898c
BIN
Tests/images/tiny.png
Normal file
BIN
Tests/images/tiny.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
|
@ -222,6 +222,20 @@ def test_p_la():
|
||||||
assert_image_similar(alpha, comparable, 5)
|
assert_image_similar(alpha, comparable, 5)
|
||||||
|
|
||||||
|
|
||||||
|
def test_p_pa():
|
||||||
|
with Image.open("Tests/images/tiny.png") as im:
|
||||||
|
assert im.mode == "P"
|
||||||
|
|
||||||
|
im_pa = im.convert("PA")
|
||||||
|
assert im_pa.mode == "PA"
|
||||||
|
|
||||||
|
assert (
|
||||||
|
im_pa.tobytes() == b"\x00\x00\x00\x00\x08\xff\x04\xff\x00\x00\x00\x00"
|
||||||
|
b"\x06\xff\x07\xff\x00\x00\x00\x00\x02\xff\x03\xff\x00"
|
||||||
|
b"\x00\x00\x00\x01\xff\x05\xff"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def test_matrix_illegal_conversion():
|
def test_matrix_illegal_conversion():
|
||||||
# Arrange
|
# Arrange
|
||||||
im = hopper("CMYK")
|
im = hopper("CMYK")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user