需求:比如有一组图片,尺寸大小不一,想缩放成相同的尺寸。
Pillow(Python Imaging Library)的安装
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple Pillow
一个使用pillow来缩放的例子
import os
from PIL import Image
files = os.listdir('.')
for file in files:
if os.path.isfile(file) and file.endswith('.jpg') or file.endswith('.png'):
im = Image.open(file)
im_new = im.resize((300, 300))
im_new.save('logo300_' + file)