You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/images/idubbbz.js

76 lines
2.8 KiB
JavaScript

const { Command } = require('discord-akairo');
6 years ago
const Discord = require('discord.js');
const { createCanvas, loadImage, getContext } = require('canvas');
const superagent = require('superagent');
class IdubbbzCommand extends Command {
constructor() {
super('idubbbz', {
aliases: ['idubbbz', 'edups'],
category: 'images',
6 years ago
split: 'quoted',
args: [
{
id: 'text',
type: 'string'
},
{
id: 'image',
type: 'string'
}
]
6 years ago
});
}
6 years ago
async exec(message, args) {
6 years ago
let text = args.text;
6 years ago
let Attachment = (message.attachments).array();
let image = args.image;
if (!Attachment[0] && !image)
image = message.author.displayAvatarURL
else if (Attachment[0] && Attachment[0].url.endsWith('gif'))
return message.channel.send('Gif dosent work, sorry')
else if (!image) { // you should be careful in what is included in your scopes, you didn't use the {}
image = Attachment[0].url;
6 years ago
message.channel.send('Processing <a:loadingmin:527579785212329984>')
.then(loadingmsg => loadingmsg.delete(2000))
6 years ago
const canvas = createCanvas(1281, 627)
6 years ago
const applyText = (canvas, text) => {
const ctx = canvas.getContext('2d');
6 years ago
// Declare a base size of the font
let fontSize = 50;
6 years ago
do {
// Assign the font to the context and decrement it so it can be measured again
6 years ago
ctx.font = `${fontSize -= 10}px ubuntu`;
6 years ago
} while (ctx.measureText(text).width > 700 - 300);
6 years ago
// Return the result to use in the actual canvas
return ctx.font;
};
}
6 years ago
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').catch(error => {
return message.channel.send('An error as occured, please try again')
})
6 years ago
const bg = await loadImage(buffer);
ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);
ctx.font = applyText(canvas, text)
6 years ago
ctx.fillStyle = '#000000';
ctx.fillText(text, canvas.width / 2.1, canvas.height / 1.5);
6 years ago
6 years ago
const attachment = new Discord.Attachment(canvas.toBuffer(), 'edups.png');
6 years ago
message.channel.send(attachment).catch(error => {
message.channel.send('an error as occured. Check the bot/channel permissions')
})
}
}
6 years ago
module.exports = IdubbbzCommand;