mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 02:36:17 +03:00
Added release notes
This commit is contained in:
parent
f328383763
commit
9754c8d18d
|
@ -160,6 +160,18 @@ TODO
|
||||||
Other Changes
|
Other Changes
|
||||||
=============
|
=============
|
||||||
|
|
||||||
|
Support display_jpeg() in IPython
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
In addition to ``display()`` and ``display_png``, ``display_jpeg()`` can now
|
||||||
|
also be used to display images in IPython::
|
||||||
|
|
||||||
|
from PIL import Image
|
||||||
|
from IPython.display import display_jpeg
|
||||||
|
|
||||||
|
im = Image.new("RGB", (100, 100), (255, 0, 0))
|
||||||
|
display_jpeg(im)
|
||||||
|
|
||||||
Support reading signed 8-bit TIFF images
|
Support reading signed 8-bit TIFF images
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user