【问题标题】:Discord.js Member Image not showingDiscord.js 会员图片未显示
【发布时间】:2022-01-26 14:59:47
【问题描述】:

我的代码

const Canvas = require("canvas")
const Discord = require("discord.js")
const background = "https://i.ibb.co/02ssPDK/Music-1200x670.png"
const dim = {
    height: 675,
    width: 1200,
    margin: 50
}
const av = {
    size: 256,
    x: 480,
    y: 170
}

const Image = async (member) => {
    let username = member.user.username
    let discrim = member.user.discriminator
    let avatarURL = member.user.displayAvatarURL({format: "png", dynamic: false, size: av.size})
    const canvas = Canvas.createCanvas(dim.width, dim.height)
    const ctx = canvas.getContext("2d")
    //Draw
    const backgimage = await Canvas.loadImage(background)
    ctx.drawImage(backgimage, 0, 0)
    //Black box
    ctx.fillStyle = "rgba(0,0,0,0.8)"
    ctx.fillRect(dim.margin, dim.margin, dim.width - 2 * dim.margin, dim.height - 2 * dim.margin)

    const avimg = await Canvas.loadImage(avatarURL)
    ctx.save()

    ctx.beginPath()
    ctx.arc(av.x + av.size /2, av.h + av.size /2, av.size/2, 0, Math.PI*2, true)
    ctx.closePath()
    ctx.clip()
    ctx.drawImage(avimg, av.x, av.y)
    ctx.restore()

    const attachment = new Discord.MessageAttachment(canvas.toBuffer(), "welcome.png")
    return attachment

}

module.exports = Image

DaError

当用户加入我的频道时,只有背景图片和文字进来,而不是用户的图片。 ..................................................... ..................................................... ..................................................... ....................

【问题讨论】:

    标签: javascript node.js discord discord.js bots


    【解决方案1】:

    根据你的代码:ctx.arc(av.x + av.size /2, av.h + av.size /2, av.size/2, 0, Math.PI*2, true)

    您应该输入av.y 而不是av.h,因为在av 变量中,它不包含h

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2021-03-20
      • 2021-02-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-09-03
      相关资源
      最近更新 更多