Is there an obvious way to do this that I\'m missing? I\'m just trying to make thumbnails.
You can resize image by below code:
From PIL import Image img=Image.open('Filename.jpg') # paste image in python folder print(img.size()) new_img=img.resize((400,400)) new_img.save('new_filename.jpg')