from PIL import Image image = Image.open("path/.../image.png") image = image.resize((500,500),Image.ANTIALIAS) image.save(fp="newimage.png")