python3如何使用pil
pil(python imaging library)是python一个强大方便的图像处理库,名气也比较大。不过只支持到python 2.7。
Pillow是PIL的一个派生分支,但如今已经发展成为比PIL本身更具活力的图像处理库。目前最新版本是3.0.0。(推荐学习:Python视频教程)
给Python安装Pillow非常简单,使用pip或easy_install只要一行代码即可。
在命令行使用PIP安装:
立即学习“Python免费学习笔记(深入)”;
pip install Pillow
或在命令行使用easy_install安装:
easy_install Pillow
安装完成后,使用from PIL import Image就引用使用库了。比如:
from PIL import Imageim = Image.open("bride.jpg")im.rotate(45).show()
比如,模糊效果也只需几行代码:
from PIL import Image, ImageFilter# 打开一个jpg图像文件,注意是当前路径:im = Image.open('test.jpg')# 应用模糊滤镜:im2 = im.filter(ImageFilter.BLUR)im2.save('blur.jpg', 'jpeg')
更多Python相关技术文章,请访问Python教程栏目进行学习!