在Image Module Python中将BMP转换为灰度

时间:2010-04-13 16:30:29

标签: python image

我想知道如何使用Python的图像模块将BMP转换为灰度? 感谢

1 个答案:

答案 0 :(得分:4)

灰度图像模式为'L'

>>> import Image
>>> Image.open('input.bmp').convert('L').save('output.bmp')