Answers for "pil image resize widht height"

2

width and height of pil image

image = PIL.Image.open("sample.png")
width, height = image.size
Posted by: Guest on January-15-2021
2

pil resize image

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

Python Answers by Framework

Browse Popular Code Answers by Language