PIL(Python Image Library)是python的第三方图像处理库,但是由于其强大的功能与众多的使用人数,几乎已经被认为是python官方图像处理库了。
python中使用pil的方法:
在命令行使用PIP安装:
pipinstallPillow
或在命令行使用easy_install安装:
easy_installPillow
安装完成后,使用from PIL import Image就引用使用库了。比如:
fromPILimportImage im=Image.open("bride.jpg") im.rotate(45).show()
示例:
fromPILimportImage fromPILimportImageFilter im=Image.open("beauty.jpg") om=im.filter(ImageFilter.BLUR) om.save("beautyBlur.jpg")原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容