mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-22 15:24:37 +03:00
64 lines
1.0 KiB
ReStructuredText
64 lines
1.0 KiB
ReStructuredText
11.2.0
|
|
------
|
|
|
|
Security
|
|
========
|
|
|
|
TODO
|
|
^^^^
|
|
|
|
TODO
|
|
|
|
:cve:`YYYY-XXXXX`: TODO
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
TODO
|
|
|
|
Backwards Incompatible Changes
|
|
==============================
|
|
|
|
TODO
|
|
^^^^
|
|
|
|
Deprecations
|
|
============
|
|
|
|
Image.Image.get_child_images()
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
.. deprecated:: 11.2.0
|
|
|
|
``Image.Image.get_child_images()`` has been deprecated. and will be removed in Pillow
|
|
13 (2026-10-15). It will be moved to ``ImageFile.ImageFile.get_child_images()``. The
|
|
method uses an image's file pointer, and so child images could only be retrieved from
|
|
an :py:class:`PIL.ImageFile.ImageFile` instance.
|
|
|
|
API Changes
|
|
===========
|
|
|
|
TODO
|
|
^^^^
|
|
|
|
TODO
|
|
|
|
API Additions
|
|
=============
|
|
|
|
Check for MozJPEG
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
You can check if Pillow has been built against the MozJPEG version of the
|
|
libjpeg library, and what version of MozJPEG is being used::
|
|
|
|
from PIL import features
|
|
features.check_feature("mozjpeg") # True or False
|
|
features.version_feature("mozjpeg") # "4.1.1" for example, or None
|
|
|
|
Other Changes
|
|
=============
|
|
|
|
TODO
|
|
^^^^
|
|
|
|
TODO
|