Python Image Resize Pillow
Description
Resize image using Python Pillow library tutorial.
Python Image Resize Pillow.py
from PIL import Image
img=Image.open('test.jpg')
img=img.resize((300,300))
img.save('small.jpg')
Comments (0)
Add CommentNo comments yet. Be the first to comment!