Files
python-guide/docs/scenarios/imaging.rst
T
Alex Clark 5468e02ecc Update imaging.rst
Refer to official Pillow documentation instead of outdated release README; installation instructions were relocated from ``README.rst`` to docs/ sometime after 2.8.1 was released. And docs have been hosted on RTD for quite some time.
2015-05-01 20:48:34 -04:00

31 lines
884 B
ReStructuredText

==================
Image Manipulation
==================
.. todo::
Add introduction about image manipulation and its Python libraries.
Python Imaging Library
----------------------
The `Python Imaging Library <http://www.pythonware.com/products/pil/>`_, or PIL
for short, is *the* library for image manipulation in Python. Unfortunately,
its development has stagnated, with its last release in 2009.
Luckily for you, there's an actively-developed fork of PIL called
`Pillow <http://python-pillow.github.io/>`_ - it's easier to install, runs on
all operating systems, and supports Python 3.
Installation
~~~~~~~~~~~~
Before installing Pillow, you'll have to install Pillow's prerequisites. Find
the instructions for your platform
`here <http://pillow.readthedocs.org/installation.html>`_.
After that, it's straightforward:
.. code-block:: console
$ pip install Pillow