gpt4 book ai didi

javascript - 通过链接在 Discord 附件中使用 PHP 生成的图像

转载 作者:行者123 更新时间:2023-12-02 23:45:25 26 4
gpt4 key购买 nike

我正在尝试通过我的 Discord 机器人从链接上传图像。该图像是使用 PHP 使用图像处理和生成生成的,并以 png 格式输出。

尽管当我尝试将图像附加到我的机器人消息中时,它会上传一个随机文件,我相信该文件是 png 背后的代码。

message.channel.send({files: ["https://banlister.com/profiling/profile.php?id=76561198153846406"]});

我已经在谷歌上搜索过这个问题,并花了一些时间试图想出其他方法来解决这个问题,但我不太喜欢每次都下载图像,所以我想我可能可以在这里获得一些帮助?

当我使用 imgur 链接尝试此操作时,当我链接本地镜像时它也有效:example

我的印象是,这只能通过每次下载图像来实现,尽管我认为我最好还是询问专家来确定。

最佳答案

机器人将图像发送为 profile.php,因为 URL 会发送到 profile.php,因此您需要指定格式。例如你可以这样做:

message.channel.send({
files: [{
attachment: 'https://banlister.com/profiling/profile.php?id=76561198153846406',
name: 'profile.png'
}]
})

关于javascript - 通过链接在 Discord 附件中使用 PHP 生成的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55881679/

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