1. 程式人生 > >python3 安裝PIL

python3 安裝PIL

關於Pillow與PIL

PIL(Python Imaging Library)是Python一個強大方便的影象處理庫,名氣也比較大。不過只支援到Python 2.7。

Pillow是PIL的一個派生分支,但如今已經發展成為比PIL本身更具活力的影象處理庫。目前最新版本是3.0.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()