I want to crop image in the way by removing first 30 rows and last 30 rows from the given image. I have searched but did not get the exact solution. Does somebody have some suggestions?
There is a crop() method:
crop()
w, h = yourImage.size yourImage.crop((0, 30, w, h-30)).save(...)
1.4m articles
1.4m replys
5 comments
57.0k users