from PIL import Image img_file = 'dog.jpg' img = Image.open(img_file) img.show() test = img.crop((0,0,1000,1000)) test.show()