MAY 13, 2021
from PIL import Image img = Image.open('/path/to/image') left = 10 top = 20 right = 10 bottom = 20 img = img.crop((left, top, right, bottom))
CodePython