python通过pil将图片转换成黑白效果的方法
作者:疯狂一夏
这篇文章主要介绍了python通过pil将图片转换成黑白效果的方法,实例分析了Python中pil库的使用技巧,需要的朋友可以参考下
本文实例讲述了python通过pil将图片转换成黑白效果的方法。分享给大家供大家参考。具体分析如下:
pil功能强大,convert方法可以轻易的将图片转换,下面的代码可以将图片转换成黑白效果
from PIL import Image image_file = Image.open("convert_image.png") # open colour image image_file = image_file.convert('1') # convert image to black and white image_file.save('result.png')
希望本文所述对大家的Python程序设计有所帮助。
您可能感兴趣的文章:
- Python3中正则模块re.compile、re.match及re.search函数用法详解
- python 3.7.0 下pillow安装方法
- Python实现更改图片尺寸大小的方法(基于Pillow包)
- python正则表达式re之compile函数解析
- python安装pil库方法及代码
- python使用pil进行图像处理(等比例压缩、裁剪)实例代码
- python中PIL安装简单教程
- python通过pil为png图片填充上背景颜色的方法
- Python中请不要再用re.compile了
- Python通过PIL获取图片主要颜色并和颜色库进行对比的方法
- Python实现图片裁剪的两种方式(Pillow和OpenCV)
- python3读取图片并灰度化图片的四种方法(OpenCV、PIL.Image、TensorFlow方法)总结
- Python的PIL库中getpixel方法的使用
- Python3安装Pillow与PIL的方法
- Linux上安装Python的PIL和Pillow库处理图片的实例教程
- python实现通过pil模块对图片格式进行转换的方法
- python使用PIL模块获取图片像素点的方法
- Python图像处理库PIL详细使用说明