Answers for "downscale and upscale image python"

2

python resize image

from PIL import Image
image = Image.open("path/.../image.png")
image = image.resize((500,500),Image.ANTIALIAS)
image.save(fp="newimage.png")
Posted by: Guest on June-15-2020
0

python image processing and resizing

image = Image.open('demo_image.jpg')
image.thumbnail((400, 400))
image.save('image_thumbnail.jpg')

print(image.size) # Output: (400, 267)
Posted by: Guest on June-29-2021

Python Answers by Framework

Browse Popular Code Answers by Language