Exmaple Bot for discord-welcome-card package in discord.js V13
.env file
TOKEN=YOUR_DISCORD_BOT_TOKEN
const { MessageAttachment } = require('discord.js')
const image = await drawCard({
avatar: msg.user.avatarURL({ format: 'png' }),
blur: true,
rounded: true,
text: "Some text",
subtitle: "Pigeon subtitle",
theme: {
image: "./commands/image.png",
color: new Gradient("linear", {
color: "#4287f5",
offset: 1
}, {
color: "#f5426f",
offset: 0
})
}
});
interaction.reply({ files: [new MessageAttachment(image, 'welcome.png')] })