discord-vixcanva
v1.0.72
Published
A better way to customize your discord canvas!
Downloads
93
Readme
discord-vixcanva
A powerful Discord bot utility for creating and customizing canvas images.
Table of Contents
Installation
You can easily install the discord-vixcanva
package via npm:
npm install discord-vixcanva
usage
You can import the package in your files like this:
const { Canvas } = require('discord-vixcanva');
Example
const { Canvas } = require('discord-vixcanva');
// Create a canvas
const canvas = new Canvas(200, 100);
// Customize and draw on the canvas
canvas.setColor('blue');
canvas.drawRect(0, 0, 200, 100);
canvas.drawText('Hello, Canvas!', 20, 50, 'white', '24px Arial');
// Send the canvas image to a Discord channel
const attachment = canvas.toAttachment();
message.channel.send('Here\'s your canvas image:', attachment);