Skip to content

Commit

Permalink
Merge pull request #2 from radarhere/jpg_repr
Browse files Browse the repository at this point in the history
Added release notes
  • Loading branch information
n3011 committed May 15, 2023
2 parents f328383 + 9754c8d commit b5d622c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/releasenotes/10.0.0.rst
Expand Up @@ -160,6 +160,18 @@ TODO
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
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down

0 comments on commit b5d622c

Please sign in to comment.