我想在互联网上找到图像的尺寸。我尝试使用
from PIL import Image
import urllib2 as urllib
fd = urllib.urlopen("http://a/b/c")
im = Image.open(fd)
im.size
如this answer中所建议,但我收到错误消息
addinfourl instance has no attribute 'seek'
我检查并返回的对象urllib2.urlopen(url)
似乎没有根据dir
.
那么,我必须做些什么才能将图像从 Internet 加载到 PIL 中?