有任何方法可以将图像从文件附加到Discord.py嵌入“缩略图” embed.set_thumbnail(url =“附加图片”)
有可能
答案 0 :(得分:1)
file = discord.File(file path", filename="image.png")
embed = discord.Embed()
embed.set_thumbnail(url="attachment://image.png")
await messagable.send(file=file, embed=embed)