2023-12-21 14:13:31 +03:00
|
|
|
from __future__ import annotations
|
2024-01-20 14:23:03 +03:00
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
from pathlib import Path
|
|
|
|
|
2020-01-10 08:28:24 +03:00
|
|
|
import pytest
|
2020-09-01 20:16:46 +03:00
|
|
|
|
2020-02-23 07:14:42 +03:00
|
|
|
from PIL import Image, ImageSequence, PngImagePlugin
|
2020-01-10 08:28:24 +03:00
|
|
|
|
|
|
|
|
2020-03-31 22:43:31 +03:00
|
|
|
# APNG browser support tests and fixtures via:
|
|
|
|
# https://philip.html5.org/tests/apng/tests.html
|
|
|
|
# (referenced from https://wiki.mozilla.org/APNG_Specification)
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_basic() -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/single_frame.png") as im:
|
|
|
|
assert not im.is_animated
|
|
|
|
assert im.n_frames == 1
|
|
|
|
assert im.get_format_mimetype() == "image/apng"
|
|
|
|
assert im.info.get("default_image") is None
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/single_frame_default.png") as im:
|
|
|
|
assert im.is_animated
|
|
|
|
assert im.n_frames == 2
|
|
|
|
assert im.get_format_mimetype() == "image/apng"
|
|
|
|
assert im.info.get("default_image")
|
|
|
|
assert im.getpixel((0, 0)) == (255, 0, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (255, 0, 0, 255)
|
|
|
|
im.seek(1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
# test out of bounds seek
|
|
|
|
with pytest.raises(EOFError):
|
2020-01-10 08:44:47 +03:00
|
|
|
im.seek(2)
|
2020-01-10 08:28:24 +03:00
|
|
|
|
2020-03-31 22:43:31 +03:00
|
|
|
# test rewind support
|
|
|
|
im.seek(0)
|
|
|
|
assert im.getpixel((0, 0)) == (255, 0, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (255, 0, 0, 255)
|
|
|
|
im.seek(1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
|
2022-10-03 08:57:42 +03:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"filename",
|
|
|
|
("Tests/images/apng/split_fdat.png", "Tests/images/apng/split_fdat_zero_chunk.png"),
|
|
|
|
)
|
2024-01-31 13:55:32 +03:00
|
|
|
def test_apng_fdat(filename: str) -> None:
|
2022-10-03 08:57:42 +03:00
|
|
|
with Image.open(filename) as im:
|
2020-03-31 22:43:31 +03:00
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_dispose() -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/dispose_op_none.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/dispose_op_background.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 0, 0, 0)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 0, 0, 0)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/dispose_op_background_final.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/dispose_op_previous.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/dispose_op_previous_final.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/dispose_op_previous_first.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 0, 0, 0)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 0, 0, 0)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_dispose_region() -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/dispose_op_none_region.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/dispose_op_background_before_region.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 0, 0, 0)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 0, 0, 0)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/dispose_op_background_region.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 0, 255, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 0, 0, 0)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/dispose_op_previous_region.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_dispose_op_previous_frame() -> None:
|
2020-12-24 01:55:22 +03:00
|
|
|
# Test that the dispose settings being used are from the previous frame
|
|
|
|
#
|
|
|
|
# Image created with:
|
|
|
|
# red = Image.new("RGBA", (128, 64), (255, 0, 0, 255))
|
|
|
|
# green = red.copy()
|
|
|
|
# green.paste(Image.new("RGBA", (64, 32), (0, 255, 0, 255)))
|
|
|
|
# blue = red.copy()
|
|
|
|
# blue.paste(Image.new("RGBA", (64, 32), (0, 255, 0, 255)), (64, 32))
|
|
|
|
#
|
|
|
|
# red.save(
|
|
|
|
# "Tests/images/apng/dispose_op_previous_frame.png",
|
|
|
|
# save_all=True,
|
|
|
|
# append_images=[green, blue],
|
|
|
|
# disposal=[
|
2022-01-15 01:02:31 +03:00
|
|
|
# PngImagePlugin.Disposal.OP_NONE,
|
|
|
|
# PngImagePlugin.Disposal.OP_PREVIOUS,
|
|
|
|
# PngImagePlugin.Disposal.OP_PREVIOUS
|
2020-12-24 01:55:22 +03:00
|
|
|
# ],
|
|
|
|
# )
|
|
|
|
with Image.open("Tests/images/apng/dispose_op_previous_frame.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (255, 0, 0, 255)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_dispose_op_background_p_mode() -> None:
|
2020-06-29 14:20:57 +03:00
|
|
|
with Image.open("Tests/images/apng/dispose_op_background_p_mode.png") as im:
|
|
|
|
im.seek(1)
|
|
|
|
im.load()
|
|
|
|
assert im.size == (128, 64)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_blend() -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/blend_op_source_solid.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/blend_op_source_transparent.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 0, 0, 0)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 0, 0, 0)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/blend_op_source_near_transparent.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 2)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 2)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/blend_op_over.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/blend_op_over_near_transparent.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 97)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_blend_transparency() -> None:
|
2023-03-16 12:05:56 +03:00
|
|
|
with Image.open("Tests/images/blend_transparency.png") as im:
|
|
|
|
im.seek(1)
|
|
|
|
assert im.getpixel((0, 0)) == (255, 0, 0)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_chunk_order() -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/fctl_actl.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_delay() -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/delay.png") as im:
|
|
|
|
im.seek(1)
|
|
|
|
assert im.info.get("duration") == 500.0
|
|
|
|
im.seek(2)
|
|
|
|
assert im.info.get("duration") == 1000.0
|
|
|
|
im.seek(3)
|
|
|
|
assert im.info.get("duration") == 500.0
|
|
|
|
im.seek(4)
|
|
|
|
assert im.info.get("duration") == 1000.0
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/delay_round.png") as im:
|
|
|
|
im.seek(1)
|
|
|
|
assert im.info.get("duration") == 500.0
|
|
|
|
im.seek(2)
|
|
|
|
assert im.info.get("duration") == 1000.0
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/delay_short_max.png") as im:
|
|
|
|
im.seek(1)
|
|
|
|
assert im.info.get("duration") == 500.0
|
|
|
|
im.seek(2)
|
|
|
|
assert im.info.get("duration") == 1000.0
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/delay_zero_denom.png") as im:
|
|
|
|
im.seek(1)
|
|
|
|
assert im.info.get("duration") == 500.0
|
|
|
|
im.seek(2)
|
|
|
|
assert im.info.get("duration") == 1000.0
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/delay_zero_numer.png") as im:
|
|
|
|
im.seek(1)
|
|
|
|
assert im.info.get("duration") == 0.0
|
|
|
|
im.seek(2)
|
|
|
|
assert im.info.get("duration") == 0.0
|
|
|
|
im.seek(3)
|
|
|
|
assert im.info.get("duration") == 500.0
|
|
|
|
im.seek(4)
|
|
|
|
assert im.info.get("duration") == 1000.0
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_num_plays() -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/num_plays.png") as im:
|
|
|
|
assert im.info.get("loop") == 0
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/num_plays_1.png") as im:
|
|
|
|
assert im.info.get("loop") == 1
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_mode() -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/mode_16bit.png") as im:
|
|
|
|
assert im.mode == "RGBA"
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 0, 128, 191)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 0, 128, 191)
|
|
|
|
|
2023-10-19 11:12:01 +03:00
|
|
|
with Image.open("Tests/images/apng/mode_grayscale.png") as im:
|
2020-03-31 22:43:31 +03:00
|
|
|
assert im.mode == "L"
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == 128
|
|
|
|
assert im.getpixel((64, 32)) == 255
|
|
|
|
|
2023-10-19 11:12:01 +03:00
|
|
|
with Image.open("Tests/images/apng/mode_grayscale_alpha.png") as im:
|
2020-03-31 22:43:31 +03:00
|
|
|
assert im.mode == "LA"
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
assert im.getpixel((0, 0)) == (128, 191)
|
|
|
|
assert im.getpixel((64, 32)) == (128, 191)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/mode_palette.png") as im:
|
|
|
|
assert im.mode == "P"
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
im = im.convert("RGB")
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/mode_palette_alpha.png") as im:
|
|
|
|
assert im.mode == "P"
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
im = im.convert("RGBA")
|
2021-06-27 11:29:02 +03:00
|
|
|
assert im.getpixel((0, 0)) == (255, 0, 0, 0)
|
|
|
|
assert im.getpixel((64, 32)) == (255, 0, 0, 0)
|
2020-03-31 22:43:31 +03:00
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/mode_palette_1bit_alpha.png") as im:
|
|
|
|
assert im.mode == "P"
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
im = im.convert("RGBA")
|
|
|
|
assert im.getpixel((0, 0)) == (0, 0, 255, 128)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 0, 255, 128)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_chunk_errors() -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/chunk_no_actl.png") as im:
|
|
|
|
assert not im.is_animated
|
|
|
|
|
2023-02-23 16:30:38 +03:00
|
|
|
with pytest.warns(UserWarning):
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/chunk_multi_actl.png") as im:
|
|
|
|
im.load()
|
2023-03-03 11:29:51 +03:00
|
|
|
assert not im.is_animated
|
2020-01-10 08:28:24 +03:00
|
|
|
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/chunk_actl_after_idat.png") as im:
|
|
|
|
assert not im.is_animated
|
2020-01-10 08:28:24 +03:00
|
|
|
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/chunk_no_fctl.png") as im:
|
|
|
|
with pytest.raises(SyntaxError):
|
2020-01-10 08:28:24 +03:00
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/chunk_repeat_fctl.png") as im:
|
|
|
|
with pytest.raises(SyntaxError):
|
2020-01-10 08:44:47 +03:00
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/chunk_no_fdat.png") as im:
|
|
|
|
with pytest.raises(SyntaxError):
|
2020-01-10 08:44:47 +03:00
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_syntax_errors() -> None:
|
2023-02-23 16:30:38 +03:00
|
|
|
with pytest.warns(UserWarning):
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/syntax_num_frames_zero.png") as im:
|
|
|
|
assert not im.is_animated
|
|
|
|
with pytest.raises(OSError):
|
2020-01-10 08:28:24 +03:00
|
|
|
im.load()
|
2020-01-10 08:44:47 +03:00
|
|
|
|
2023-02-23 16:30:38 +03:00
|
|
|
with pytest.warns(UserWarning):
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/syntax_num_frames_zero_default.png") as im:
|
|
|
|
assert not im.is_animated
|
|
|
|
im.load()
|
2020-01-10 08:44:47 +03:00
|
|
|
|
2020-03-31 22:43:31 +03:00
|
|
|
# we can handle this case gracefully
|
|
|
|
exception = None
|
|
|
|
with Image.open("Tests/images/apng/syntax_num_frames_low.png") as im:
|
|
|
|
try:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
except Exception as e:
|
|
|
|
exception = e
|
|
|
|
assert exception is None
|
2020-01-10 08:44:47 +03:00
|
|
|
|
2021-03-07 21:04:25 +03:00
|
|
|
with pytest.raises(OSError):
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/syntax_num_frames_high.png") as im:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
im.load()
|
2020-01-10 08:28:24 +03:00
|
|
|
|
2023-02-23 16:30:38 +03:00
|
|
|
with pytest.warns(UserWarning):
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/syntax_num_frames_invalid.png") as im:
|
|
|
|
assert not im.is_animated
|
|
|
|
im.load()
|
2020-01-10 08:28:24 +03:00
|
|
|
|
2020-03-31 22:43:31 +03:00
|
|
|
|
2022-08-23 14:41:32 +03:00
|
|
|
@pytest.mark.parametrize(
|
2022-08-24 01:11:02 +03:00
|
|
|
"test_file",
|
2022-08-23 14:41:32 +03:00
|
|
|
(
|
2020-03-31 22:43:31 +03:00
|
|
|
"sequence_start.png",
|
|
|
|
"sequence_gap.png",
|
|
|
|
"sequence_repeat.png",
|
|
|
|
"sequence_repeat_chunk.png",
|
|
|
|
"sequence_reorder.png",
|
|
|
|
"sequence_reorder_chunk.png",
|
|
|
|
"sequence_fdat_fctl.png",
|
2022-08-23 14:41:32 +03:00
|
|
|
),
|
|
|
|
)
|
2024-01-31 13:55:32 +03:00
|
|
|
def test_apng_sequence_errors(test_file: str) -> None:
|
2022-08-23 14:41:32 +03:00
|
|
|
with pytest.raises(SyntaxError):
|
2022-08-24 01:11:02 +03:00
|
|
|
with Image.open(f"Tests/images/apng/{test_file}") as im:
|
2022-08-23 14:41:32 +03:00
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
im.load()
|
2020-01-10 08:28:24 +03:00
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_save(tmp_path: Path) -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open("Tests/images/apng/single_frame.png") as im:
|
|
|
|
test_file = str(tmp_path / "temp.png")
|
|
|
|
im.save(test_file, save_all=True)
|
|
|
|
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.load()
|
|
|
|
assert not im.is_animated
|
|
|
|
assert im.n_frames == 1
|
2023-11-03 14:08:48 +03:00
|
|
|
assert im.get_format_mimetype() == "image/png"
|
2020-03-31 22:43:31 +03:00
|
|
|
assert im.info.get("default_image") is None
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
with Image.open("Tests/images/apng/single_frame_default.png") as im:
|
2023-12-03 22:59:44 +03:00
|
|
|
frames = [frame_im.copy() for frame_im in ImageSequence.Iterator(im)]
|
2020-03-31 22:43:31 +03:00
|
|
|
frames[0].save(
|
|
|
|
test_file, save_all=True, default_image=True, append_images=frames[1:]
|
2020-01-10 08:28:24 +03:00
|
|
|
)
|
2020-03-31 22:43:31 +03:00
|
|
|
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.load()
|
|
|
|
assert im.is_animated
|
|
|
|
assert im.n_frames == 2
|
|
|
|
assert im.get_format_mimetype() == "image/apng"
|
|
|
|
assert im.info.get("default_image")
|
|
|
|
im.seek(1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_save_alpha(tmp_path: Path) -> None:
|
2023-04-29 08:02:11 +03:00
|
|
|
test_file = str(tmp_path / "temp.png")
|
|
|
|
|
|
|
|
im = Image.new("RGBA", (1, 1), (255, 0, 0, 255))
|
|
|
|
im2 = Image.new("RGBA", (1, 1), (255, 0, 0, 127))
|
|
|
|
im.save(test_file, save_all=True, append_images=[im2])
|
|
|
|
|
|
|
|
with Image.open(test_file) as reloaded:
|
|
|
|
assert reloaded.getpixel((0, 0)) == (255, 0, 0, 255)
|
|
|
|
|
|
|
|
reloaded.seek(1)
|
|
|
|
assert reloaded.getpixel((0, 0)) == (255, 0, 0, 127)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_save_split_fdat(tmp_path: Path) -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
# test to make sure we do not generate sequence errors when writing
|
|
|
|
# frames with image data spanning multiple fdAT chunks (in this case
|
|
|
|
# both the default image and first animation frame will span multiple
|
|
|
|
# data chunks)
|
|
|
|
test_file = str(tmp_path / "temp.png")
|
|
|
|
with Image.open("Tests/images/old-style-jpeg-compression.png") as im:
|
|
|
|
frames = [im.copy(), Image.new("RGBA", im.size, (255, 0, 0, 255))]
|
|
|
|
im.save(
|
2020-09-01 20:16:46 +03:00
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
default_image=True,
|
|
|
|
append_images=frames,
|
2020-01-10 08:28:24 +03:00
|
|
|
)
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open(test_file) as im:
|
|
|
|
exception = None
|
|
|
|
try:
|
|
|
|
im.seek(im.n_frames - 1)
|
|
|
|
im.load()
|
|
|
|
except Exception as e:
|
|
|
|
exception = e
|
|
|
|
assert exception is None
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_save_duration_loop(tmp_path: Path) -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
test_file = str(tmp_path / "temp.png")
|
|
|
|
with Image.open("Tests/images/apng/delay.png") as im:
|
|
|
|
frames = []
|
|
|
|
durations = []
|
|
|
|
loop = im.info.get("loop")
|
|
|
|
default_image = im.info.get("default_image")
|
|
|
|
for i, frame_im in enumerate(ImageSequence.Iterator(im)):
|
|
|
|
frames.append(frame_im.copy())
|
|
|
|
if i != 0 or not default_image:
|
|
|
|
durations.append(frame_im.info.get("duration", 0))
|
|
|
|
frames[0].save(
|
2020-01-10 08:28:24 +03:00
|
|
|
test_file,
|
|
|
|
save_all=True,
|
2020-03-31 22:43:31 +03:00
|
|
|
default_image=default_image,
|
|
|
|
append_images=frames[1:],
|
|
|
|
duration=durations,
|
|
|
|
loop=loop,
|
2020-01-10 08:28:24 +03:00
|
|
|
)
|
|
|
|
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.load()
|
|
|
|
assert im.info.get("loop") == loop
|
|
|
|
im.seek(1)
|
|
|
|
assert im.info.get("duration") == 500.0
|
|
|
|
im.seek(2)
|
|
|
|
assert im.info.get("duration") == 1000.0
|
|
|
|
im.seek(3)
|
|
|
|
assert im.info.get("duration") == 500.0
|
|
|
|
im.seek(4)
|
|
|
|
assert im.info.get("duration") == 1000.0
|
|
|
|
|
|
|
|
# test removal of duplicated frames
|
|
|
|
frame = Image.new("RGBA", (128, 64), (255, 0, 0, 255))
|
2021-07-13 11:47:55 +03:00
|
|
|
frame.save(
|
|
|
|
test_file, save_all=True, append_images=[frame, frame], duration=[500, 100, 150]
|
|
|
|
)
|
2020-03-31 22:43:31 +03:00
|
|
|
with Image.open(test_file) as im:
|
|
|
|
assert im.n_frames == 1
|
2023-11-03 14:08:48 +03:00
|
|
|
assert "duration" not in im.info
|
2020-03-31 22:43:31 +03:00
|
|
|
|
2023-11-03 14:08:48 +03:00
|
|
|
different_frame = Image.new("RGBA", (128, 64))
|
|
|
|
frame.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[frame, different_frame],
|
|
|
|
duration=[500, 100, 150],
|
|
|
|
)
|
2021-07-13 16:02:23 +03:00
|
|
|
with Image.open(test_file) as im:
|
2023-11-03 14:08:48 +03:00
|
|
|
assert im.n_frames == 2
|
|
|
|
assert im.info["duration"] == 600
|
2020-03-31 22:43:31 +03:00
|
|
|
|
2023-11-03 14:08:48 +03:00
|
|
|
im.seek(1)
|
|
|
|
assert im.info["duration"] == 150
|
2023-06-06 11:04:39 +03:00
|
|
|
|
2023-11-03 14:08:48 +03:00
|
|
|
# test info duration
|
|
|
|
frame.info["duration"] = 300
|
|
|
|
frame.save(test_file, save_all=True, append_images=[frame, different_frame])
|
2023-06-06 11:04:39 +03:00
|
|
|
with Image.open(test_file) as im:
|
2023-11-03 14:08:48 +03:00
|
|
|
assert im.n_frames == 2
|
|
|
|
assert im.info["duration"] == 600
|
2023-06-06 11:04:39 +03:00
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_save_disposal(tmp_path: Path) -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
test_file = str(tmp_path / "temp.png")
|
|
|
|
size = (128, 64)
|
|
|
|
red = Image.new("RGBA", size, (255, 0, 0, 255))
|
|
|
|
green = Image.new("RGBA", size, (0, 255, 0, 255))
|
|
|
|
transparent = Image.new("RGBA", size, (0, 0, 0, 0))
|
|
|
|
|
2022-01-15 01:02:31 +03:00
|
|
|
# test OP_NONE
|
2020-03-31 22:43:31 +03:00
|
|
|
red.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[green, transparent],
|
2022-01-15 01:02:31 +03:00
|
|
|
disposal=PngImagePlugin.Disposal.OP_NONE,
|
|
|
|
blend=PngImagePlugin.Blend.OP_OVER,
|
2020-03-31 22:43:31 +03:00
|
|
|
)
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.seek(2)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
2022-01-15 01:02:31 +03:00
|
|
|
# test OP_BACKGROUND
|
2020-03-31 22:43:31 +03:00
|
|
|
disposal = [
|
2022-01-15 01:02:31 +03:00
|
|
|
PngImagePlugin.Disposal.OP_NONE,
|
|
|
|
PngImagePlugin.Disposal.OP_BACKGROUND,
|
|
|
|
PngImagePlugin.Disposal.OP_NONE,
|
2020-03-31 22:43:31 +03:00
|
|
|
]
|
|
|
|
red.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[red, transparent],
|
|
|
|
disposal=disposal,
|
2022-01-15 01:02:31 +03:00
|
|
|
blend=PngImagePlugin.Blend.OP_OVER,
|
2020-03-31 22:43:31 +03:00
|
|
|
)
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.seek(2)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 0, 0, 0)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 0, 0, 0)
|
|
|
|
|
|
|
|
disposal = [
|
2022-01-15 01:02:31 +03:00
|
|
|
PngImagePlugin.Disposal.OP_NONE,
|
|
|
|
PngImagePlugin.Disposal.OP_BACKGROUND,
|
2020-03-31 22:43:31 +03:00
|
|
|
]
|
|
|
|
red.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[green],
|
|
|
|
disposal=disposal,
|
2022-01-15 01:02:31 +03:00
|
|
|
blend=PngImagePlugin.Blend.OP_OVER,
|
2020-03-31 22:43:31 +03:00
|
|
|
)
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.seek(1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
2022-01-15 01:02:31 +03:00
|
|
|
# test OP_PREVIOUS
|
2020-03-31 22:43:31 +03:00
|
|
|
disposal = [
|
2022-01-15 01:02:31 +03:00
|
|
|
PngImagePlugin.Disposal.OP_NONE,
|
|
|
|
PngImagePlugin.Disposal.OP_PREVIOUS,
|
|
|
|
PngImagePlugin.Disposal.OP_NONE,
|
2020-03-31 22:43:31 +03:00
|
|
|
]
|
|
|
|
red.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[green, red, transparent],
|
|
|
|
default_image=True,
|
|
|
|
disposal=disposal,
|
2022-01-15 01:02:31 +03:00
|
|
|
blend=PngImagePlugin.Blend.OP_OVER,
|
2020-03-31 22:43:31 +03:00
|
|
|
)
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.seek(3)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
disposal = [
|
2022-01-15 01:02:31 +03:00
|
|
|
PngImagePlugin.Disposal.OP_NONE,
|
|
|
|
PngImagePlugin.Disposal.OP_PREVIOUS,
|
2020-03-31 22:43:31 +03:00
|
|
|
]
|
|
|
|
red.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[green],
|
|
|
|
disposal=disposal,
|
2022-01-15 01:02:31 +03:00
|
|
|
blend=PngImagePlugin.Blend.OP_OVER,
|
2020-03-31 22:43:31 +03:00
|
|
|
)
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.seek(1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
2021-07-13 16:02:23 +03:00
|
|
|
# test info disposal
|
2022-01-15 01:02:31 +03:00
|
|
|
red.info["disposal"] = PngImagePlugin.Disposal.OP_BACKGROUND
|
2021-07-13 16:02:23 +03:00
|
|
|
red.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[Image.new("RGBA", (10, 10), (0, 255, 0, 255))],
|
|
|
|
)
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.seek(1)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 0, 0, 0)
|
|
|
|
|
2020-03-31 22:43:31 +03:00
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_save_disposal_previous(tmp_path: Path) -> None:
|
2020-06-29 15:02:01 +03:00
|
|
|
test_file = str(tmp_path / "temp.png")
|
|
|
|
size = (128, 64)
|
2022-10-24 14:19:22 +03:00
|
|
|
blue = Image.new("RGBA", size, (0, 0, 255, 255))
|
2020-06-29 15:02:01 +03:00
|
|
|
red = Image.new("RGBA", size, (255, 0, 0, 255))
|
|
|
|
green = Image.new("RGBA", size, (0, 255, 0, 255))
|
|
|
|
|
2022-01-15 01:02:31 +03:00
|
|
|
# test OP_NONE
|
2022-10-24 14:19:22 +03:00
|
|
|
blue.save(
|
2020-06-29 15:02:01 +03:00
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[red, green],
|
2022-01-15 01:02:31 +03:00
|
|
|
disposal=PngImagePlugin.Disposal.OP_PREVIOUS,
|
2020-06-29 15:02:01 +03:00
|
|
|
)
|
|
|
|
with Image.open(test_file) as im:
|
2022-10-24 14:19:22 +03:00
|
|
|
assert im.getpixel((0, 0)) == (0, 0, 255, 255)
|
|
|
|
|
2020-06-29 15:02:01 +03:00
|
|
|
im.seek(2)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_apng_save_blend(tmp_path: Path) -> None:
|
2020-03-31 22:43:31 +03:00
|
|
|
test_file = str(tmp_path / "temp.png")
|
|
|
|
size = (128, 64)
|
|
|
|
red = Image.new("RGBA", size, (255, 0, 0, 255))
|
|
|
|
green = Image.new("RGBA", size, (0, 255, 0, 255))
|
|
|
|
transparent = Image.new("RGBA", size, (0, 0, 0, 0))
|
|
|
|
|
2022-01-15 01:02:31 +03:00
|
|
|
# test OP_SOURCE on solid color
|
2020-03-31 22:43:31 +03:00
|
|
|
blend = [
|
2022-01-15 01:02:31 +03:00
|
|
|
PngImagePlugin.Blend.OP_OVER,
|
|
|
|
PngImagePlugin.Blend.OP_SOURCE,
|
2020-03-31 22:43:31 +03:00
|
|
|
]
|
|
|
|
red.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[red, green],
|
|
|
|
default_image=True,
|
2022-01-15 01:02:31 +03:00
|
|
|
disposal=PngImagePlugin.Disposal.OP_NONE,
|
2020-03-31 22:43:31 +03:00
|
|
|
blend=blend,
|
|
|
|
)
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.seek(2)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
|
2022-01-15 01:02:31 +03:00
|
|
|
# test OP_SOURCE on transparent color
|
2020-03-31 22:43:31 +03:00
|
|
|
blend = [
|
2022-01-15 01:02:31 +03:00
|
|
|
PngImagePlugin.Blend.OP_OVER,
|
|
|
|
PngImagePlugin.Blend.OP_SOURCE,
|
2020-03-31 22:43:31 +03:00
|
|
|
]
|
|
|
|
red.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[red, transparent],
|
|
|
|
default_image=True,
|
2022-01-15 01:02:31 +03:00
|
|
|
disposal=PngImagePlugin.Disposal.OP_NONE,
|
2020-03-31 22:43:31 +03:00
|
|
|
blend=blend,
|
|
|
|
)
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.seek(2)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 0, 0, 0)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 0, 0, 0)
|
|
|
|
|
2022-01-15 01:02:31 +03:00
|
|
|
# test OP_OVER
|
2020-03-31 22:43:31 +03:00
|
|
|
red.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
append_images=[green, transparent],
|
|
|
|
default_image=True,
|
2022-01-15 01:02:31 +03:00
|
|
|
disposal=PngImagePlugin.Disposal.OP_NONE,
|
|
|
|
blend=PngImagePlugin.Blend.OP_OVER,
|
2020-03-31 22:43:31 +03:00
|
|
|
)
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.seek(1)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
|
|
|
im.seek(2)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
|
|
|
assert im.getpixel((64, 32)) == (0, 255, 0, 255)
|
2021-07-13 16:02:23 +03:00
|
|
|
|
|
|
|
# test info blend
|
2022-01-15 01:02:31 +03:00
|
|
|
red.info["blend"] = PngImagePlugin.Blend.OP_OVER
|
2021-07-13 16:02:23 +03:00
|
|
|
red.save(test_file, save_all=True, append_images=[green, transparent])
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.seek(2)
|
|
|
|
assert im.getpixel((0, 0)) == (0, 255, 0, 255)
|
2022-01-15 02:07:07 +03:00
|
|
|
|
|
|
|
|
2024-02-21 11:39:29 +03:00
|
|
|
def test_apng_save_size(tmp_path: Path) -> None:
|
|
|
|
test_file = str(tmp_path / "temp.png")
|
|
|
|
|
|
|
|
im = Image.new("L", (100, 100))
|
|
|
|
im.save(test_file, save_all=True, append_images=[Image.new("L", (200, 200))])
|
|
|
|
|
|
|
|
with Image.open(test_file) as reloaded:
|
|
|
|
assert reloaded.size == (200, 200)
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_seek_after_close() -> None:
|
2022-04-17 05:14:53 +03:00
|
|
|
im = Image.open("Tests/images/apng/delay.png")
|
|
|
|
im.seek(1)
|
|
|
|
im.close()
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
im.seek(0)
|
|
|
|
|
|
|
|
|
2022-09-23 13:06:08 +03:00
|
|
|
@pytest.mark.parametrize("mode", ("RGBA", "RGB", "P"))
|
2023-10-02 11:07:56 +03:00
|
|
|
@pytest.mark.parametrize("default_image", (True, False))
|
2023-11-03 14:08:48 +03:00
|
|
|
@pytest.mark.parametrize("duplicate", (True, False))
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_different_modes_in_later_frames(
|
2024-01-31 13:55:32 +03:00
|
|
|
mode: str, default_image: bool, duplicate: bool, tmp_path: Path
|
2024-01-31 12:12:58 +03:00
|
|
|
) -> None:
|
2022-09-23 13:06:08 +03:00
|
|
|
test_file = str(tmp_path / "temp.png")
|
|
|
|
|
|
|
|
im = Image.new("L", (1, 1))
|
2023-10-02 11:07:56 +03:00
|
|
|
im.save(
|
|
|
|
test_file,
|
|
|
|
save_all=True,
|
|
|
|
default_image=default_image,
|
2023-11-03 14:08:48 +03:00
|
|
|
append_images=[im.convert(mode) if duplicate else Image.new(mode, (1, 1), 1)],
|
2023-10-02 11:07:56 +03:00
|
|
|
)
|
2022-09-23 13:06:08 +03:00
|
|
|
with Image.open(test_file) as reloaded:
|
|
|
|
assert reloaded.mode == mode
|
2024-01-08 04:42:52 +03:00
|
|
|
|
|
|
|
|
2024-01-08 23:20:24 +03:00
|
|
|
def test_apng_repeated_seeks_give_correct_info() -> None:
|
2024-01-11 00:03:42 +03:00
|
|
|
with Image.open("Tests/images/apng/different_durations.png") as im:
|
2024-01-09 16:55:49 +03:00
|
|
|
for i in range(3):
|
2024-01-08 04:42:52 +03:00
|
|
|
im.seek(0)
|
2024-01-08 23:20:24 +03:00
|
|
|
assert im.info["duration"] == 4000
|
2024-01-08 04:42:52 +03:00
|
|
|
im.seek(1)
|
2024-01-08 23:20:24 +03:00
|
|
|
assert im.info["duration"] == 1000
|