在图像模块 Python 中将 BMP 转换为灰度

ari*_*ien 4 python image

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

bob*_*nce 5

灰度图像模式为'L'

>>> import Image
>>> Image.open('input.bmp').convert('L').save('output.bmp')
Run Code Online (Sandbox Code Playgroud)