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')

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/8323.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论