Python3 Python3 Pillowで画像の差を求める時はモードの確認を from PIL import Image, ImageChops image1 = Image.open('a.png') image2 = Image.open('b.png') # モードが一致していないとValueError: im... 2016.08.30 Python3