I want to resize the new images in a height and width of 800px and save them. And the app mustn\'t store the real image. Any help?
This is my code, it saves the orig
image = image.resize(size, Image.ANTIALIAS)
resize is non-destructive, it returns a new image.