diff --git a/commands/image-edit/tint.js b/commands/image-edit/tint.js new file mode 100644 index 00000000..d1f0275e --- /dev/null +++ b/commands/image-edit/tint.js @@ -0,0 +1,47 @@ +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', + 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); + return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'tint.png' }] }); + } catch (err) { + return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); + } + } +}; diff --git a/package.json b/package.json index 61ef3ecd..77d63877 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "66.1.0", + "version": "66.2.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {