共计 515 个字符,预计需要花费 2 分钟才能阅读完成。
之前介绍过利用Python 实现图片翻转图片裁剪图片拼接,使用的第三方库是 matplotlib,今天来学习另一个用于图像处理的第三方库 Pillow。
Pillow
PIL(Python Imaging Library)是一个 Python 第三方图像处理库,由于其功能丰富,API 简洁易用,因此深受好评,是 Python 中最常用且最受欢迎的图像处理库之一。
但是,PIL 库更新缓慢。于是一群 Python 社区志愿者在 PIL 库的基础上开发了一个支持 Python3 版本的图像处理库,它就是 Pillow。
安装
安装 Pillow:pip install Pillow
,pip 下载速度慢的话,可通过 修改 pip 镜像源加快模块下载速度。
使用
文件 hello.py:
import sys
from PIL import Image
images = []
for arg in sys.argv[1:]:
images.append(Image.open(arg))
images[0].save("merged.gif", save_all=True, append_images=images[1:], duration=200, loop=0
)
命令行运行:python hello.py 1.gif 2.gif
正文完