关于Pillow与PIL
PIL(Python Imaging Library)Python强便图像处理库名气比较支持Python 2.7
PIL官网站:
PillowPIL派支今已经发展比PIL本身更具力图像处理库目前新版本3.0.0
PillowGithub主页:
Pillow文档(应版本v3.0.0):
Pillow文档文翻译(应版本v2.4.0):
Python 3.x 安装Pillow
给Python安装Pillow非简单使用pip或easy_install要行代码即
命令行使用PIP安装:
pip install Pillow
或命令行使用easy_install安装:
easy_install Pillow
安装完使用from PIL import Image引用使用库比:
from PIL import Image
im = Image.open("bride.jpg")
im.rotate(45).show()
简单便