I installed Python Pillow and am trying to crop an image.
Other effects work great (for example, thumbnail, blurring image, etc.)
Whenever I run the code below I get the error:
tile cannot extend outside image
test_image = test_media.file
original = Image.open(test_image)
width, height = original.size # Get dimensions
left = width/2
top = height/2
right = width/2
bottom = height/2
cropped_example = original.crop((left, top, right, bottom))
cropped_example.show()
I used a cropping example I found for PIL, because I couldn't find one for Pillow (which I assumed would be the same).