image = Image.open('demo_image.jpg') box = (200, 300, 700, 600) cropped_image = image.crop(box) cropped_image.save('cropped_image.jpg') # Print size of cropped image print(cropped_image.size) # Output: (500, 300)