在嵌入中使用本地图像的 Discord JDA?

Discord JDA using a local image in an embed?

是否可以在带有 Discord JDA 的嵌入式消息中使用本地图像文件作为 thumbnail/image?

对于我的一个命令,我正在以编程方式构建图像并通过 Imgur API 上传它,然后使用 Imgur URL.

在嵌入式消息中显示它

我知道我可以将文件直接发送到频道,但我希望它包含在显示其他相关信息的嵌入中。

干杯

您可以按照 documentation for setImage 中的说明使用 attachment://filename.ext

例如,如果您有一个名为 cat-final-copy-final-LAST.png 的文件,您可以这样发送它:

// the name locally is not cat.png but we can still call it cat.png when we send it with addFile
File file = new File("cat-final-copy-final-LAST.png");
EmbedBuilder embed = new EmbedBuilder();

// this URI "attachment://cat.png" references the attachment with the name "cat.png" that you pass in `addFile` below
embed.setImage("attachment://cat.png");

 // this name does not have to be the same name the file has locally, it can be anything as long as the file extension is correct
channel.sendMessage(embed.build())
       .addFile(file, "cat.png")
       .queue();