Files
xiao/commands/image-edit/tint.js
T
2018-03-23 11:10:59 +00:00

50 lines
1.5 KiB
JavaScript

const { Command } = require('discord.js-commando');
const { createCanvas, loadImage } = require('canvas');
const snekfetch = require('snekfetch');
const { drawImageWithTint } = require('../../util/Canvas');
module.exports = class TintCommand extends Command {
constructor(client) {
super(client, {
name: 'tint',
group: 'image-edit',
memberName: 'tint',
description: 'Draws an image or a user\'s avatar but tinted a specific color.',
throttling: {
usages: 1,
duration: 10
},
clientPermissions: ['ATTACH_FILES'],
args: [
{
key: 'color',
prompt: 'What color do you want to use? This can be #colorcode or a name.',
type: 'string',
parse: color => color.toLowerCase()
},
{
key: 'image',
prompt: 'What image would you like to edit?',
type: 'image|avatar',
default: msg => msg.author.displayAvatarURL({ format: 'png', size: 512 })
}
]
});
}
async run(msg, { color, image }) {
try {
const { body } = await snekfetch.get(image);
const data = await loadImage(body);
const canvas = createCanvas(data.width, data.height);
const ctx = canvas.getContext('2d');
drawImageWithTint(ctx, data, color, 0, 0, data.width, data.height);
const attachment = canvas.toBuffer();
if (Buffer.byteLength(attachment) > 8e+6) return msg.reply('Resulting image was above 8 MB.');
return msg.say({ files: [{ attachment, name: 'tint.png' }] });
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};