Package Exports
- discord-canvas
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (discord-canvas) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
discord-canvas
Easy to use !!
You want to develop a discord bot using the Discord.js library and you want to integrate nice images in Canvas? discord-canvas is made for you! You can create great welcome images, goodbye images and other fun images fully customizable using the many easy-to-use features!
Installation
$ npm install --save discord-canvasClick here to see the documentation!
Example
const Canvas = require("discord-canvas"),
Discord = require("discord.js");
const image = await new Canvas.Goodbye()
.setUsername("xixi52")
.setDiscriminator("0001")
.setMemberCount("140")
.setGuildName("Server DEV")
.setAvatar("https://cdn.craftburg.net/stockage/img/discord/avatar.jpg")
.setColor("border", "#8015EA")
.setColor("username-box", "#8015EA")
.setColor("discriminator-box", "#8015EA")
.setColor("message-box", "#8015EA")
.setColor("title", "#8015EA")
.setColor("avatar", "#8015EA")
.setBackground("https://cdn.craftburg.net/stockage/img/discord/background.jpg")
.toAttachment();
const attachment = new Discord.Attachment(image.toBuffer(), "goodbye-image.png");
message.channel.send(attachment);
Contributing
If you have a request for a new feature you can open an issue on Github. Pull requests are appreciated!
Credits
Made by xixi52 with ❤️
Thanks to Androz2091 for his help !