Как сохранить изображение под другим именем? Прямо сейчас это выглядит как File_1.jpg, File_2.jpg et c .. Я бы хотел, чтобы это выглядело как message.from_user.id + .jpg
downloaded_file = bot.download_file(file_info.file_path)
src = "/home/user/imgs/" + file_info.file_path
with open(src, "wb") as new_img:
new_img.write(downloaded_file)
bot.send_message(message.chat.id, message.photo)