Pillow - Image Processing with Python¶
Pillow library is used to process images with Python.
As shown in the Pillow official document, Pillow is a fork of the old PIL library.
Install Pillow¶
According to official documents, Pillow and PIL should not be installed in the same environment.
You must uninstall the PIL before installing the Pillow.
Pillow is included by default in the Anaconda package, but if you need to install it, use a pip to install it.
pip install Pillow
Once installed, save the image to process.
Next
Next : Basic usage