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