python-pillow / Pillow

Python Imaging Library (Fork)
https://python-pillow.org
Other
12.35k stars 2.24k forks source link

Added writing XMP bytes to JPEG #8286

Closed radarhere closed 2 months ago

radarhere commented 3 months ago

Resolves #8283, allowing XMP data to be saved to JPEG files, either by

im.save("out.jpg", xmp=b"test")

or

im.info["xmp"] = b"test"
im.save("out.jpg")
cmahnke commented 3 months ago

Thanks! But please keep in mind that there is a size limit of about 64Kb on this field, see Spec, page 14. How about raising an error if it's exceeded?