We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d50840 commit 29c340dCopy full SHA for 29c340d
docs/releasenotes/11.0.0.rst
@@ -103,10 +103,20 @@ TODO
103
API Additions
104
=============
105
106
-TODO
107
-^^^^
108
-
109
+Writing XMP bytes to JPEG and MPO
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+XMP data can now be saved to JPEG files using an ``xmp`` argument.
110
+```python
111
+im.save("out.jpg", xmp=b"test")
112
+```
113
114
+The data can also be set through :py:attr:`~PIL.Image.Image.info`, for use when saving
115
+either JPEG or MPO images.
116
117
+im.info["xmp"] = b"test"
118
+im.save("out.jpg")
119
120
121
Other Changes
122
0 commit comments