当前位置:主页 > 软件编程 > Python代码 >

Python批量修改图片分辨率的实例代码

时间:2020-10-01 15:47:36 | 栏目:Python代码 | 点击:

前言:处理图片需要,需把图片都转换成1920*1280的大小, python实现很方便,需要导入图片处理的Image包和匹配的glob包,很简单,代码如下:

img_path = glob.glob("D:/chosed/*.jpg")
path_save = "D:/closedd"
for file in img_path:
  name = os.path.join(path_save, file)
  im = Image.open(file)
  im.thumbnail((1920,1280))
  print(im.format, im.size, im.mode)
  im.save(name,'JPEG')

您可能感兴趣的文章:

相关文章