mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
92 lines
2.7 KiB
JavaScript
92 lines
2.7 KiB
JavaScript
const Command = require('../../structures/Command');
|
|
const { createCanvas, loadImage, registerFont } = require('canvas');
|
|
const request = require('node-superfetch');
|
|
const path = require('path');
|
|
const { wrapText } = require('../../util/Canvas');
|
|
registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'Noto-Regular.ttf'), { family: 'Noto' });
|
|
registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'Noto-CJK.otf'), { family: 'Noto' });
|
|
registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'Noto-Emoji.ttf'), { family: 'Noto' });
|
|
|
|
module.exports = class MemeGenModernCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'meme-gen-modern',
|
|
aliases: [
|
|
'meme-gen',
|
|
'meme-generator',
|
|
'create-meme',
|
|
'meme-generator-modern',
|
|
'create-meme-modern',
|
|
'meme-gen-m',
|
|
'modern-meme-gen',
|
|
'modern-meme-generator',
|
|
'create-modern-meme',
|
|
'm-meme-gen',
|
|
'm-meme-generator',
|
|
'create-m-meme',
|
|
'mgm',
|
|
'mg'
|
|
],
|
|
group: 'edit-meme',
|
|
memberName: 'meme-gen-modern',
|
|
description: 'Sends a meme with the text and image of your choice.',
|
|
throttling: {
|
|
usages: 1,
|
|
duration: 10
|
|
},
|
|
clientPermissions: ['ATTACH_FILES'],
|
|
credit: [
|
|
{
|
|
name: 'Google',
|
|
url: 'https://www.google.com/',
|
|
reason: 'Noto Font',
|
|
reasonURL: 'https://www.google.com/get/noto/'
|
|
}
|
|
],
|
|
args: [
|
|
{
|
|
key: 'text',
|
|
prompt: 'What should the text of the meme be?',
|
|
type: 'string'
|
|
},
|
|
{
|
|
key: 'image',
|
|
prompt: 'What image would you like to edit?',
|
|
type: 'image',
|
|
default: msg => msg.author.displayAvatarURL({ format: 'png', size: 1024 })
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg, { text, image }) {
|
|
try {
|
|
const { body } = await request.get(image);
|
|
const base = await loadImage(body);
|
|
const canvas = createCanvas(base.width, base.height);
|
|
const ctx = canvas.getContext('2d');
|
|
ctx.font = '40px Noto';
|
|
const lines = await wrapText(ctx, text, base.width - 10);
|
|
const lineBreakLen = text.split('\n').length;
|
|
const linesLen = (40 * lines.length)
|
|
+ (40 * (lineBreakLen - 1))
|
|
+ (14 * lines.length)
|
|
+ (14 * (lineBreakLen - 1))
|
|
+ 14;
|
|
canvas.height += linesLen;
|
|
ctx.font = '40px Noto';
|
|
ctx.textBaseline = 'top';
|
|
ctx.fillStyle = 'white';
|
|
ctx.fillRect(0, 0, base.width, linesLen);
|
|
ctx.fillStyle = 'black';
|
|
ctx.fillText(lines.join('\n'), 5, 5);
|
|
ctx.drawImage(base, 0, linesLen);
|
|
const attachment = canvas.toBuffer();
|
|
if (Buffer.byteLength(attachment) > 8e+6) return msg.reply('Resulting image was above 8 MB.');
|
|
return msg.say({ files: [{ attachment, name: 'meme-gen-modern.png' }] });
|
|
} catch (err) {
|
|
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
}
|
|
}
|
|
};
|