mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-04-27 12:33:41 +03:00
Added release notes
This commit is contained in:
parent
2944ff18d6
commit
3a7e29306a
59
docs/releasenotes/9.3.0.rst
Normal file
59
docs/releasenotes/9.3.0.rst
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
9.3.0
|
||||||
|
-----
|
||||||
|
|
||||||
|
Backwards Incompatible Changes
|
||||||
|
==============================
|
||||||
|
|
||||||
|
TODO
|
||||||
|
^^^^
|
||||||
|
|
||||||
|
Deprecations
|
||||||
|
============
|
||||||
|
|
||||||
|
TODO
|
||||||
|
^^^^
|
||||||
|
|
||||||
|
TODO
|
||||||
|
|
||||||
|
API Changes
|
||||||
|
===========
|
||||||
|
|
||||||
|
TODO
|
||||||
|
^^^^
|
||||||
|
|
||||||
|
TODO
|
||||||
|
|
||||||
|
API Additions
|
||||||
|
=============
|
||||||
|
|
||||||
|
Saving multiple MPO frames
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
Multiple MPO frames can now be saved. Using the ``save_all`` argument, all of
|
||||||
|
an image's frames will be saved to file::
|
||||||
|
|
||||||
|
from PIL import Image
|
||||||
|
im = Image.open("frozenpond.mpo")
|
||||||
|
im.save(out, save_all=True)
|
||||||
|
|
||||||
|
Additional images can also be appended when saving, by combining the
|
||||||
|
``save_all`` argument with the ``append_images`` argument::
|
||||||
|
|
||||||
|
im.save(out, save_all=True, append_images=[im1, im2, ...])
|
||||||
|
|
||||||
|
|
||||||
|
Security
|
||||||
|
========
|
||||||
|
|
||||||
|
TODO
|
||||||
|
^^^^
|
||||||
|
|
||||||
|
TODO
|
||||||
|
|
||||||
|
Other Changes
|
||||||
|
=============
|
||||||
|
|
||||||
|
TODO
|
||||||
|
^^^^
|
||||||
|
|
||||||
|
TODO
|
|
@ -14,6 +14,7 @@ expected to be backported to earlier versions.
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
|
9.3.0
|
||||||
9.2.0
|
9.2.0
|
||||||
9.1.1
|
9.1.1
|
||||||
9.1.0
|
9.1.0
|
||||||
|
|
Loading…
Reference in New Issue
Block a user