Images - basic stuff in pillow
user_6939821
python
a year ago
219 B
1
Indexable
Never
from PIL import Image with Image.open("hopper.jpg") as im: # Provide the target width and height of the image (width, height) = (im.width // 2, im.height // 2) im_resized = im.resize((width, height))