如何使用PIL或任何其他Python库获取图片边的大小?
from PIL import Image im = Image.open('whatever.png') width, height = im.size
根据文档。