Hi I was wondering how I can convert BMPs to a grey scale using Image Module of Python? Thanks
Greyscale image mode is 'L'.
'L'
>>> import Image >>> Image.open('input.bmp').convert('L').save('output.bmp')