如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#提取目录下所有图片,更改尺寸后保存到另一目录 from PIL import Image import os.path import glob def convertjpg(jpgfile,outdir,width=128,height=128): img=Image.open(jpgfile) try: new_img=img.resize((width,height),Image.BILINEAR) new_img.save(os.path.join(outdir,os.path.basename(jpgfile))) except Exception as e: print(e) for jpgfile in glob.glob("E:\\img\\*.jpg"): convertjpg(jpgfile,"E:\\lianhua") |
以上这篇用python 批量更改图像尺寸到统一大小的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/atyzy/article/details/77905463