pil resize images code example
Example 1: python pil resize image
from PIL import Image
img = Image.open("some_random_image.jpg")
resized_img = img.resize((WIDTH, HEIGHT))
resized_img.save("resized_image.jpg")
Example 2: python pillow resize image
from PIL import Image
basewidth = 300
img = Image.open('somepic.jpg')
wpercent = (basewidth/float(img.size[0]))
hsize = int((float(img.size[1])*float(wpercent)))
img = img.resize((basewidth,hsize), Image.ANTIALIAS)
img.save('sompic.jpg')
Example 3: pil resize image
im = Image.open('image.jpg')
im = im.resize((w, h))