Python Imaging Library (expansion of PIL) is the de facto image processing package for Python language..... Pillow supports a large number of image file formats including BMP, PNG, JPEG, and TIFF. The library encourages adding support for newer formats in the library by creating new file decoders.
Opening an image using open().......
Displaying the image using show()...
Obtaining information about the opened image
A) Getting the mode (color mode) of the image
B) Getting the size of the image
C) Getting the format of the image
#ironman