使用Python库Pillow等比例修改图片尺寸并压缩
PIL:Python Imaging Library,是一个非常强大的图像处理标准库,但只支持到Python2.7。于是Pillow诞生了,它Fork至PIL,可兼容至最新的Python3.X,还加入了不少新特性。使用pip install Pillow
即可安装。
本文使用的基础环境:Python 2.7.18
pip自动安装的是Pillow 6.2.2
现在有一堆尺寸较大的图片,从5千多px到2千多px不等,体积也是,小到3M,大到12M,而且还分布在不同的文件夹里。用ps处理比较慢,要一个一个打开,然后等比例调整尺寸,费时费力。决定用Python来处理,找到了Pillow这个优秀的图像处理库,很快就找到了解决方案。
先看代码:
# -*- coding:utf-8 -*-
from PIL import Image
import os
linesep = os.linesep
sep = os.sep
rootpath = "D:\\image"
maxsize = (1024, 1024)
def resizeImage(start_dir):
start_dir = start_dir.strip()
extend_name = ['.jpg','.png','.gif','.PNG','.jpeg','.JPG','.JPEG'] # 查找的文件类型
os.chdir(start_dir)
for each_file in os.listdir(os.curdir):
curfile = os.getcwd() + sep + each_file
img_prop = os.path.splitext(each_file)
if img_prop[1] in extend_name:
try:
im = Image.open(curfile)
except:
im.close()
with open(rootpath + "/process.err.log", "a") as f:
f.write(curfile + " open error" + linesep)
else:
try:
im.thumbnail(maxsize, Image.ANTIALIAS)
im.save(img_prop[0] + "_new" + img_prop[1], quality=95, optimize=True)
except:
im.close()
with open(rootpath + "/process.err.log", "a") as f:
f.write(curfile + " save error" + linesep)
if os.path.isdir(curfile):
resizeImage(curfile)
os.chdir(os.pardir)
print("processing " + start_dir)
if __name__ == '__main__':
sdir = rootpath
resizeImage(sdir)
resizeImage
函数从指定的文件夹开始,迭代查找指定类型的图片,对其进行Image.thumbnail
处理,然后通过Image.save
进行压缩保存。中间用到了try..except
,是因为有些图片格式可能有问题,导致打开或者保存出错,为避免丢失原图片而做的处理。
可以看到,逻辑其实很简单,但对于有大量图片需要进行处理的情况,这样的小脚本确实能帮上不少忙。
PS:2020年最后一天,挥别过去,迎接全新的一年,全新的自己。