gpt4 book ai didi

python-3.x - 如何在电报python bot中保存照片?

转载 作者:行者123 更新时间:2023-12-04 23:37:05 34 4
gpt4 key购买 nike

我想写一个电报机器人来保存照片。
这是我的代码,但它不起作用。
我不知道我的问题是什么?

def image_handler(bot, update):
file = bot.getFile(update.message.photo.file_id)
print ("file_id: " + str(update.message.photo.file_id))
file.download('image.jpg')

updater.dispatcher.add_handler(MessageHandler(Filters.photo, image_handler))
updater.start_polling()
updater.idle()

请帮我解决我的问题。

最佳答案

update.message.photo是一组照片尺寸(PhotoSize 对象)。

使用 file = bot.getFile(update.message.photo[-1].file_id) .这将获得可用最大尺寸的图像。

关于python-3.x - 如何在电报python bot中保存照片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50388435/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com