在BytesIO之后打开图像

时间:2017-11-07 15:32:53

标签: python

我想从我的网址上获取一张照片。尝试创建它,然后使用.get()并将其转换为:BytesIO()

 img = Image.fromarray(srcData) 
 fp = 'https://telegram.org/new.png'
 response = requests.get(fp)
 f = BytesIO(response.content)
 f.seek(0)
 f=Image.open(f)

为什么我会收到错误,即:

  

无法识别图像文件_io.bytesio

然后尝试发送它:

bot.send_photo(chat_id=chat_id, photo=f)

0 个答案:

没有答案