您好,登錄后才能下訂單哦!
這篇文章主要介紹python中使用pil的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
PIL(Python Image Library)是python的第三方圖像處理庫,但是由于其強大的功能與眾多的使用人數,幾乎已經被認為是python官方圖像處理庫了。
python中使用pil的方法:
在命令行使用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()
示例:
from PIL import Image from PIL import ImageFilter im = Image.open("beauty.jpg") om = im.filter(ImageFilter.BLUR) om.save("beautyBlur.jpg")
以上是python中使用pil的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。