2017年10月1日 星期日

Python 3.4 安裝Pillow(PIL)


PIL(Python Imaging Library)Python一個強大方便的影像處理庫,名氣也比較大。不過只支持到Python 2.7
PillowPIL的一個派生分支,但如今已經發展成為比PIL本身更具活力的影像處理庫。目前最新版本是3.0.0
o   PillowGithub主頁:https://github.com/python-pillow/Pillow
o   Pillow的文檔(對應版本v3.0.0)https://pillow.readthedocs.org/en/latest/handbook/index.html
o   Pillow的文檔中文翻譯(對應版本v2.4.0)http://pillow-cn.readthedocs.org/en/latest/
Python 3.x 安裝Pillow
Python安裝Pillow非常簡單,使用pipeasy_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()
簡單,方便。


沒有留言:

張貼留言

Node-Red --> MQTT --> Fuxa 開源碼網頁式圖控平台

Node-Red --> MQTT --> Fuxa      FUXA(一個開源的 Web HMI / SCADA 自動化監控軟體)的專案設定檔 。 這份設定檔完整定義了 HMI 監控畫面的 後端通訊(MQTT 連線、點位標籤) 與 前端網頁圖形介面(SVG 畫布...