pillowグレー画像変換


1.Imageクラスのconvertメソッドの使用
# coding:utf-8
# coding:cp936
import PIL
from PIL import Image
im = Image.open(r"E:\photo\color.png")
# im.show()
im2 = im.convert("L")
im2.show()