Python 獲取圖片格式及畫素寬高資訊

右介發表於2017-08-08
# coding: utf8  
from PIL import Image  
img
= Image.open("img.jpg") print img.size
print img.format

 

相關文章