我正在使用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
请告诉我可能是错误的原因。