From d32e43750cf18ac27893ebbe173d127d7795500c Mon Sep 17 00:00:00 2001 From: loicbersier Date: Mon, 15 Oct 2018 12:21:24 +0200 Subject: [PATCH] You are very ugly! --- commands/images/ugly.js | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 commands/images/ugly.js diff --git a/commands/images/ugly.js b/commands/images/ugly.js new file mode 100644 index 00000000..0d876eb0 --- /dev/null +++ b/commands/images/ugly.js @@ -0,0 +1,40 @@ +const { Command } = require('discord.js-commando'); +const Discord = require('discord.js'); +const { createCanvas, loadImage, getContext } = require('canvas') +const superagent = require('superagent') + + +module.exports = class uglyCommand extends Command { + constructor(client) { + super(client, { + name: 'ugly', + group: 'images', + memberName: 'ugly', + description: `You are very ugly!`, + }); + } + + async run(message) { + let Attachment = (message.attachments).array(); + let image = null + if (!Attachment[0]) + image = message.author.displayAvatarURL + else + image = Attachment[0].url + + const canvas = createCanvas(323, 400) + const ctx = canvas.getContext('2d') + const background = await loadImage('https://image.noelshack.com/fichiers/2018/42/1/1539598678-untitled.png'); + ctx.drawImage(background, 0, 0, canvas.width, canvas.height); + const { body: buffer } = await superagent.get(image); + const bg = await loadImage(buffer); + ctx.drawImage(bg, 40, 100, 250, 250); + + const attachment = new Discord.Attachment(canvas.toBuffer(), 'edupspaint.png'); + + message.say(attachment).catch(error => { + message.say('an error as occured. Check the bot/channel permissions') + }) + + } +}; \ No newline at end of file