COuld无法识别静止的.png文件

时间:2013-04-18 13:17:30

标签: python python-requests

我正在使用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

请告诉我可能是错误的原因。

0 个答案:

没有答案