Python Telebot Photosize

时间:2016-03-15 21:16:22

标签: python telegram-bot

我正在为python创建一个电报Bot,想法是接收图像然后处理它。 我已经可以拍照了,但是我无法保存。

我还没有办法保存它。

e.g。 telebot.download_file(文件,路径)

我没有结果

# Handles all sent documents and audio files
@bot.message_handler(content_types=['photo'])
def photo(*mensaje):
    for m in mensaje:
        chat_id = m.chat.id     
        user = m.chat.username
        nombreChat = m.chat.first_name
        print "ID CHAT",chat_id
        print "*************************"
        print "*************************"
        print "Nombre de usuario", user
        print "*************************"
        print "*************************"
        print "Nombre Chat",nombreChat
        print "*************************"
        print "*************************"
        print m.photo[0]
        print "*************************"
        print "*************************"
        print m.photo[1]
        print "*************************"
        print "*************************"
        print m.photo[2]
        print "*************************"
        print "*************************"`


[result][1]

1 个答案:

答案 0 :(得分:0)

来自Telegram Bot Api documentation page

enter image description here