About Supported Pillow Features

You can check what features are supported in the current installation of Pillow:

1
2
3
4
>>> from PIL import features 
>>> features.codecs
{'libtiff': 'libtiff', 'zlib': 'zip', 
'jpg_2000': 'jpeg2k', 'jpg': 'jpeg'}

Tips and Tricks Programming Python 3