python-pillowHow to check Pillow version
import PIL
print(PIL.__version__)ctrl + c| PILimport Pillow package modules | PIL.__version__returns current library version | 
Usage example
import PIL
print(PIL.__version__)output
9.1.1
More of Python Pillow
- How to draw rectangle
- How to create image from an array
- How to draw a triangle
- How to draw a point
- How to draw an arc
- How to set background color
- Using mask to merge two images with transparency
- How to add noise
- How to map image using point() method
- How to center align text horizontally
See more codes...