首頁 >後端開發 >Python教學 >python3怎麼安裝pillow模組

python3怎麼安裝pillow模組

silencement
silencement原創
2019-06-24 16:18:1210189瀏覽

python3怎麼安裝pillow模組

Pillow是PIL的一個衍生分支,但如今已發展成為比PIL本身更具活力的影像處理庫。目前最新版本是3.0.0。

Pillow的Github主頁:https://github.com/python-pillow/Pillow

Pillow的文檔(對應版本v3.0.0):https://pillow.readthedocs.org /en/latest/handbook/index.html

Pillow的文檔中文翻譯(對應版本v2.4.0):http://pillow-cn.readthedocs.org/en/latest/

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()

以上是python3怎麼安裝pillow模組的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

相關文章

看更多