================== Image Manipulation ================== .. todo:: Add introduction about image manipulation and its Python libraries. Python Imaging Library ---------------------- The `Python Imaging Library `_, 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 `_. After that, it's straightforward: .. code-block:: console $ pip install Pillow