Pillow is a third-party library that supports a variety of image file formats such as JPEG, PNG, PPM, GIF, BMP, and TIFF. Pillow library supports operations like resizing, cropping, adding text to images, rotating, greyscaling. I have already written the tutorial on  how to resize image in Python using Pillow. You can check that out as well.

How to Crop Image in Python Using Pillow

To crop an image in Python, we can use the pillow library that provides an Image class that has a crop() method. When the image is cropped, a rectangular region inside the image is selected and retained while everything else outside the area is removed.

With a Pillow library, you can crop an image with the crop() method of the Image class.

Syntax

Image.crop(box=None)

#python

How to Crop Image in Python Using Pillow
1.55 GEEK