Skip to content

Commit

Permalink
Merge pull request #6582 from radarhere/webp_exif
Browse files Browse the repository at this point in the history
Removed EXIF prefix when saving WebP
  • Loading branch information
hugovk committed Oct 11, 2022
2 parents 5076d34 + 16d04f4 commit 4995d04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Tests/test_file_webp_metadata.py
Expand Up @@ -55,9 +55,7 @@ def test_write_exif_metadata():
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"
assert webp_exif == expected_exif[6:], "WebP EXIF didn't match"


def test_read_icc_profile():
Expand Down
4 changes: 3 additions & 1 deletion src/PIL/WebPImagePlugin.py
Expand Up @@ -311,9 +311,11 @@ def _save(im, fp, filename):
lossless = im.encoderinfo.get("lossless", False)
quality = im.encoderinfo.get("quality", 80)
icc_profile = im.encoderinfo.get("icc_profile") or ""
exif = im.encoderinfo.get("exif", "")
exif = im.encoderinfo.get("exif", b"")
if isinstance(exif, Image.Exif):
exif = exif.tobytes()
if exif.startswith(b"Exif\x00\x00"):
exif = exif[6:]
xmp = im.encoderinfo.get("xmp", "")
method = im.encoderinfo.get("method", 4)

Expand Down

0 comments on commit 4995d04

Please sign in to comment.