8000 documentation: fix url for pillow by untzag · Pull Request #9857 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/faq/howto_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ or by saving to a file handle::
import sys
fig.savefig(sys.stdout)

Here is an example using `Pillow <http://python-imaging.github.io/>`_.
Here is an example using `Pillow <https://python-pillow.org/>`_.
First, the figure is saved to a BytesIO object which is then fed to
Pillow for further processing::

Expand Down
2 changes: 1 addition & 1 deletion tutorials/introductory/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# ===============================================
#
# Loading image data is supported by the `Pillow
# <http://python-imaging.github.io/>`_ library. Natively, matplotlib only
# <https://python-pillow.org/>`_ library. Natively, matplotlib only
# supports PNG images. The commands shown below fall back on Pillow if the
# native read fails.
#
Expand Down
0