How to crop an image using PIL? October 21, 2022 by Tarik There is a crop() method: w, h = yourImage.size yourImage.crop((0, 30, w, h-30)).save(...)