导语:
本文主要介绍了关于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无法安装scipy10/07
- ♥ Python的基本数据类型有哪些10/30
- ♥ 如何在python3中安装pip11/08
- ♥ python是什么意思08/14
- ♥ python如何输入正方形08/18
- ♥ 工作很乏味?试试 Python 循环语句(while 循环)12/31
内容反馈