我正在使用该Python-requests
模块从服务器进行休息呼叫。
基于休息 GET 我正在尝试从服务器获取 PNG 图像。
为了处理我正在使用Python-imaging
库
这是我的代码:
RESTC_URL = 'http://10.10.10.76:8100/UCSRestService/product/' +getpid + '/callimage'
getclass = Agent()
print "+++++++++++++++++++++=--------------------------------"
getr = getclass.GETT('cdn',RESTC_URL,'apikey','SecretString')
from PIL import Image
from StringIO import StringIO
i = Image.open(StringIO(getr.content))
print i
但它显示
cannot identify image file
请告诉我错误的原因可能是什么。