Pillow/Tests/test_file_webp_metadata.py

140 lines
3.9 KiB
Python
Raw Normal View History

from io import BytesIO
2021-01-07 16:57:49 +03:00
import pytest
2021-01-07 16:57:49 +03:00
from PIL import Image
2021-04-10 17:58:01 +03:00
from .helper import mark_if_feature_version, skip_unless_feature
pytestmark = [
skip_unless_feature("webp"),
skip_unless_feature("webp_mux"),
]
2020-02-18 16:50:34 +03:00
def test_read_exif_metadata():
file_path = "Tests/images/flower.webp"
with Image.open(file_path) as image:
assert image.format == "WEBP"
exif_data = image.info.get("exif", None)
assert exif_data
exif = image._getexif()
# Camera make
assert exif[271] == "Canon"
with Image.open("Tests/images/flower.jpg") as jpeg_image:
expected_exif = jpeg_image.info["exif"]
assert exif_data == expected_exif
def test_read_exif_metadata_without_prefix():
with Image.open("Tests/images/flower2.webp") as im:
# Assert prefix is not present
assert im.info["exif"][:6] != b"Exif\x00\x00"
exif = im.getexif()
assert exif[305] == "Adobe Photoshop CS6 (Macintosh)"
2021-01-07 16:57:49 +03:00
2021-04-10 17:58:01 +03:00
@mark_if_feature_version(
pytest.mark.valgrind_known_error, "libjpeg_turbo", "2.0", reason="Known Failing"
)
2020-02-18 16:50:34 +03:00
def test_write_exif_metadata():
file_path = "Tests/images/flower.jpg"
test_buffer = BytesIO()
with Image.open(file_path) as image:
expected_exif = image.info["exif"]
image.save(test_buffer, "webp", exif=expected_exif)
test_buffer.seek(0)
with Image.open(test_buffer) as webp_image:
webp_exif = webp_image.info.get("exif", None)
assert webp_exif
if webp_exif:
assert webp_exif == expected_exif, "WebP EXIF didn't match"
2020-02-18 16:50:34 +03:00
def test_read_icc_profile():
2020-02-18 16:50:34 +03:00
file_path = "Tests/images/flower2.webp"
with Image.open(file_path) as image:
2020-02-18 16:50:34 +03:00
assert image.format == "WEBP"
assert image.info.get("icc_profile", None)
2020-02-18 16:50:34 +03:00
icc = image.info["icc_profile"]
2020-02-18 16:50:34 +03:00
with Image.open("Tests/images/flower2.jpg") as jpeg_image:
expected_icc = jpeg_image.info["icc_profile"]
2020-02-18 16:50:34 +03:00
assert icc == expected_icc
2021-01-07 16:57:49 +03:00
2021-04-10 17:58:01 +03:00
@mark_if_feature_version(
pytest.mark.valgrind_known_error, "libjpeg_turbo", "2.0", reason="Known Failing"
)
2020-02-18 16:50:34 +03:00
def test_write_icc_metadata():
file_path = "Tests/images/flower2.jpg"
test_buffer = BytesIO()
with Image.open(file_path) as image:
expected_icc_profile = image.info["icc_profile"]
2020-02-18 16:50:34 +03:00
image.save(test_buffer, "webp", icc_profile=expected_icc_profile)
2020-02-18 16:50:34 +03:00
test_buffer.seek(0)
with Image.open(test_buffer) as webp_image:
webp_icc_profile = webp_image.info.get("icc_profile", None)
2020-02-18 16:50:34 +03:00
assert webp_icc_profile
if webp_icc_profile:
assert webp_icc_profile == expected_icc_profile, "Webp ICC didn't match"
2021-01-07 16:57:49 +03:00
2021-04-10 17:58:01 +03:00
@mark_if_feature_version(
pytest.mark.valgrind_known_error, "libjpeg_turbo", "2.0", reason="Known Failing"
)
2020-02-18 16:50:34 +03:00
def test_read_no_exif():
file_path = "Tests/images/flower.jpg"
test_buffer = BytesIO()
with Image.open(file_path) as image:
assert "exif" in image.info
2020-02-18 16:50:34 +03:00
image.save(test_buffer, "webp")
2020-02-18 16:50:34 +03:00
test_buffer.seek(0)
with Image.open(test_buffer) as webp_image:
assert not webp_image._getexif()
@skip_unless_feature("webp_anim")
2020-02-18 16:50:34 +03:00
def test_write_animated_metadata(tmp_path):
iccp_data = b"<iccp_data>"
exif_data = b"<exif_data>"
xmp_data = b"<xmp_data>"
2020-02-18 16:50:34 +03:00
temp_file = str(tmp_path / "temp.webp")
with Image.open("Tests/images/anim_frame1.webp") as frame1:
with Image.open("Tests/images/anim_frame2.webp") as frame2:
frame1.save(
temp_file,
save_all=True,
append_images=[frame2, frame1, frame2],
icc_profile=iccp_data,
exif=exif_data,
xmp=xmp_data,
2019-06-13 18:54:11 +03:00
)
2014-01-20 22:59:30 +04:00
2020-02-18 16:50:34 +03:00
with Image.open(temp_file) as image:
assert "icc_profile" in image.info
assert "exif" in image.info
assert "xmp" in image.info
assert iccp_data == image.info.get("icc_profile", None)
assert exif_data == image.info.get("exif", None)
assert xmp_data == image.info.get("xmp", None)