标签: python python-imaging-library
我想用黑白图像。我使用python中的这段代码来做到这一点:
from PIL import Image col = Image.open("imgForTest.png") gray = col.convert('L') bw = gray.point(lambda x: 0 if x<200 else 255, '1') bw.save("result.png")
但是我发现表标题存在问题,如何将标题中的颜色自动从黑色更改为白色。
这是我的输入和输出:
imgForTest.png
result.png
谢谢