Python 42 Programming Tutorial
2016-08-31 本文已影响0人
豆表示低调
from PIL import Image
img = Image.open("bucky.jpg")
print(img.size)
print(img.format)
img.show() # save image as temporary file and open
from PIL import Image
img = Image.open("bucky.jpg")
print(img.size)
print(img.format)
img.show() # save image as temporary file and open