当前位置:主页 > python教程 >

用python 批量更改图像尺寸到统一大小的方法

发布:2022-09-07 08:48:44 52


给大家整理一篇python 图像相关的编程文章,网友康雨伯根据主题投稿了本篇教程内容,涉及到python、图像尺寸相关内容,已被117网友关注,如果对知识点想更进一步了解可以在下方电子资料中获取。

如下所示:

#提取目录下所有图片,更改尺寸后保存到另一目录
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 批量更改图像尺寸到统一大小的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持码农之家。


参考资料

相关文章

网友讨论