画像を表示する

2017/01/23

Python2.7.10, PIL1.1.7

from PIL import Image

fp = 'test.png'
img = Image.open(fp)
img.show()