pil change image size code example
Example 1: python pil resize image
from PIL import Image
# Image.open() can also open other image types
img = Image.open("some_random_image.jpg")
# WIDTH and HEIGHT are integers
resized_img = img.resize((WIDTH, HEIGHT))
resized_img.save("resized_image.jpg")
Example 2: pil get image size
from PIL import Image
im = Image.open('whatever.png')
width, height = im.size
Example 3: change image resolution pillow
size = 7016, 4961
im = Image.open("my_image.png")
im_resized = im.resize(size, Image.ANTIALIAS)
im_resized.save("my_image_resized.png", "PNG")
Example 4: pil resize image
im = Image.open('image.jpg')
im = im.resize((w, h))