用ImageFilter对一张图进行模糊操作
时间: 2023-07-01 09:13:00 浏览: 162
图片模糊处理
3星 · 编辑精心推荐
好的,以下是对一张图片进行模糊操作的示例代码:
``` python
from PIL import Image, ImageFilter
# 读取图片
image = Image.open('example.jpg')
# 进行模糊操作
blurred_image = image.filter(ImageFilter.BLUR)
# 显示模糊后的图片
blurred_image.show()
# 保存模糊后的图片
blurred_image.save('blurred_example.jpg')
```
在这个示例中,我们首先使用PIL库的Image模块读取了一张名为"example.jpg"的图片。然后,我们使用ImageFilter库的BLUR滤波器对图片进行了模糊操作,并将结果保存到了名为"blurred_example.jpg"的文件中。最后,我们使用show()方法显示了模糊后的图片。
阅读全文