Files
xiao/commands/image-edit/color.js
T
2017-09-29 00:49:17 +00:00

36 lines
888 B
JavaScript

const { Command } = require('discord.js-commando');
const { createCanvas } = require('canvas');
module.exports = class ColorCommand extends Command {
constructor(client) {
super(client, {
name: 'color',
aliases: ['colour'],
group: 'image-edit',
memberName: 'color',
description: 'Sends an image of the color you choose.',
throttling: {
usages: 1,
duration: 15
},
clientPermissions: ['ATTACH_FILES'],
args: [
{
key: 'color',
prompt: 'What color do you want to view? This can be #colorcode or a name.',
type: 'string',
parse: color => color.toLowerCase()
}
]
});
}
run(msg, { color }) {
const canvas = createCanvas(250, 250);
const ctx = canvas.getContext('2d');
ctx.fillStyle = color;
ctx.fillRect(0, 0, 250, 250);
return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'color.png' }] });
}
};