画像の大きさ取得
2017/02/04
Python2.7.10, PIL1.1.7
from PIL import Image
fp = 'test.png'
img = Image.open(fp)
width,height = im.size
2017/02/04
Python2.7.10, PIL1.1.7
from PIL import Image
fp = 'test.png'
img = Image.open(fp)
width,height = im.size