python中如何使用pil

图片[1]-python中如何使用pil-uusu优素-乐高,模型,3d打印,编程

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
喜欢就支持一下吧
点赞7 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容