0

モジュールを使用して、Python-requestsサーバーから残りの呼び出しを行います。

rest 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