From a1eef3ae308ec5b2d4bb3071b80c36d70a12dd82 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Sun, 14 Oct 2018 11:51:35 +0200 Subject: [PATCH] edups --- commands/fun/idubbbz.js | 69 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 commands/fun/idubbbz.js diff --git a/commands/fun/idubbbz.js b/commands/fun/idubbbz.js new file mode 100644 index 00000000..68929d4a --- /dev/null +++ b/commands/fun/idubbbz.js @@ -0,0 +1,69 @@ +const { Command } = require('discord.js-commando'); +const Discord = require('discord.js'); +const { createCanvas, loadImage, getContext } = require('canvas') +const superagent = require('superagent') + + +module.exports = class idubbbzCommand extends Command { + constructor(client) { + super(client, { + name: 'idubbbz', + aliases: ['idubbz', 'edups'], + group: 'fun', + memberName: 'idubbbz', + description: `Put the text you send in idubbbz piece of paper`, + args: [ + { + key: 'text', + prompt: 'What do you the paper to say?', + type: 'string', + default: 'Nigger Faggot' + } + ] + }); + } + + async run(message, { text }) { + let Attachment = (message.attachments).array(); + let image = null + if (!Attachment[0]) + image = message.author.displayAvatarURL + else + image = Attachment[0].url + + const applyText = (canvas, text) => { + const ctx = canvas.getContext('2d'); + + // Declare a base size of the font + let fontSize = 50; + + do { + // Assign the font to the context and decrement it so it can be measured again + ctx.font = `${fontSize -= 10}px sans-serif`; + // Compare pixel width of the text to the canvas minus the approximate avatar size + } while (ctx.measureText(text).width > canvas.width - 300); + + // Return the result to use in the actual canvas + return ctx.font; + }; + + const canvas = createCanvas(1281, 627) + const ctx = canvas.getContext('2d') + const background = await loadImage(image); + ctx.drawImage(background, 620, 100, 200, 200); + const { body: buffer } = await superagent.get('https://image.noelshack.com/fichiers/2018/41/7/1539510207-untitled.png'); + const bg = await loadImage(buffer); + ctx.drawImage(bg, 0, 0, canvas.width, canvas.height); + ctx.font = applyText(canvas, text) + //ctx.font = '40px sans-serif'; + // Select the style that will be used to fill the text in + ctx.fillStyle = '#000000'; + // Actually fill the text with a solid color + ctx.fillText(text, canvas.width / 2.1, canvas.height / 1.5); + + const attachment = new Discord.Attachment(canvas.toBuffer(), 'test.png'); + + message.say(attachment); + + } +}; \ No newline at end of file