0

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

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

4

0 回答 0