diff --git a/assets/images/ifunny.png b/assets/images/ifunny.png new file mode 100644 index 00000000..28db310b Binary files /dev/null and b/assets/images/ifunny.png differ diff --git a/commands/image-edit/ifunny.js b/commands/image-edit/ifunny.js new file mode 100644 index 00000000..63bbaca8 --- /dev/null +++ b/commands/image-edit/ifunny.js @@ -0,0 +1,42 @@ +const { Command } = require('discord.js-commando'); +const { createCanvas, loadImage } = require('canvas'); +const snekfetch = require('snekfetch'); + +module.exports = class IfunnyCommand extends Command { + constructor(client) { + super(client, { + name: 'ifunny', + group: 'image-edit', + memberName: 'ifunny', + description: 'Draws an image with the iFunny logo.', + throttling: { + usages: 1, + duration: 10 + }, + clientPermissions: ['ATTACH_FILES'], + args: [ + { + key: 'image', + prompt: 'What image would you like to edit?', + type: 'image', + default: msg => msg.author.displayAvatarURL({ format: 'png', size: 512 }) + } + ] + }); + } + + async run(msg, { 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'); + ctx.fillStyle = '#181619'; + ctx.fillRect(0, canvas.height - data.height, canvas.width, data.height); + ctx.drawImage(data, canvas.width - data.width, canvas.height - data.height); + return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'ifunny.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 ef922e04..10ee9a35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "57.1.0", + "version": "57.2.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {