2020年12月

使用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年最后一天,挥别过去,迎接全新的一年,全新的自己。

CentOS7.5 安装supervisor 4.2.1

环境:CentOS 7.5,Python2.7.16
建议使用pip安装

安装

pip install supervisor

安装之后,执行echo_supervisord_conf,如果能看到配置文件内容,说明安装成功。

生成配置文件

新建/etc/supervisor目录,然后执行命令:

echo_supervisord_conf > /etc/supervisor/supervisord.conf

配置文件名称建议使用supervisord.conf,如果你取了别的名称,后面执行supervisorctl命令时,就需要指定配置文件,否则会报错。

- 阅读剩余部分 -