在画布内嵌入图像时输出错误| Discord.js

时间:2020-07-05 09:23:22

标签: discord discord.js

因此,在使用画布(节点模块)输出图像时出现此错误。有人可以帮忙吗?

43

我认为这可能是这里的问题

embed.image.url: Could not interpret "{'name': 'welcome-image.png'}" as string.

如果有人可以在这里帮助我并尝试消除该错误,将不胜感激

1 个答案:

答案 0 :(得分:0)

我相信this已回答您的问题。我使用画布的方式如下:

var attachment = new Discord.MessageAttachment(canvas.toBuffer(), `image_name.png`)
const embed = new Discord.MessageEmbed()
  .setAuthor(member.tag)
  .setFooter(client.config.footer)
  .attachFiles([attachment])
  .setImage(`attachment://image_name.png`)
  .setColor(client.config.color)