Answers for "pillow open image"

2

PIL image example

>>> from PIL import Image
>>> im = Image.open("image.jpg")
>>> im.show()
Posted by: Guest on June-12-2020
2

pil resize image

im = Image.open('image.jpg')  
im = im.resize((w, h))
Posted by: Guest on October-17-2020
0

save imag epillow

im.save(file + ".thumbnail", "JPEG")
Posted by: Guest on January-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language