标签: python image
我想知道如何使用Python的图像模块将BMP转换为灰度? 感谢
答案 0 :(得分:4)
灰度图像模式为'L'。
'L'
>>> import Image >>> Image.open('input.bmp').convert('L').save('output.bmp')