38 lines
2.9 KiB
JavaScript
38 lines
2.9 KiB
JavaScript
const gm = require("gm").subClass({
|
|
imageMagick: true
|
|
});
|
|
|
|
exports.run = async (message, args) => {
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image/GIF to make a motivational poster!`;
|
|
const newArgs = args.filter(item => !item.includes(image.url) );
|
|
if (args.length === 0) return `${message.author.mention}, you need to provide some text to make a motivational poster!`;
|
|
const processMessage = await message.channel.createMessage("<a:processing:479351417102925854> Processing... This might take a while");
|
|
const [topText, bottomText] = newArgs.join(" ").split(/(?<!\\),/).map(elem => elem.trim());
|
|
const file = `/tmp/${Math.random().toString(36).substring(2, 15)}.miff`;
|
|
const text = `/tmp/${Math.random().toString(36).substring(2, 15)}.png`;
|
|
const text2 = `/tmp/${Math.random().toString(36).substring(2, 15)}.png`;
|
|
const buffer = await gm().in("(").in(image.path).coalesce().scale(500, 500).borderColor("black").border(5, 5).out(")").borderColor("white").border(3, 3).bufferPromise("miff", image.delay);
|
|
await gm(buffer).coalesce().background("black").gravity("Center").extent(600, "%[fx:s.h+50]").writePromise(file);
|
|
const size2 = await gm(file).sizePromise();
|
|
await gm().background("black").out("-size", "600").fill("white").font("Times").pointSize(56).gravity("Center").out(`pango:${topText.replace(/&/g, "\\&").replace(/>/g, "\\>").replace(/</g, "\\<").replace(/"/g, "\\"").replace(/'/g, "\\'")}`).gravity("South").out("-splice", bottomText ? "0x0" : "0x20").writePromise(text);
|
|
const size3 = await gm(text).sizePromise();
|
|
const command2 = gm(file).gravity("North").coalesce().extent(600, size2.height + size3.height).out("null:", "(", text, "-set", "page", `+0+${size2.height}`, ")", "-layers", "composite");
|
|
let resultBuffer;
|
|
if (bottomText) {
|
|
await gm().background("black").out("-size", "600").fill("white").font("Times").pointSize(28).gravity("Center").out(`pango:${bottomText.replace(/&/g, "\\&").replace(/>/g, "\\>").replace(/</g, "\\<").replace(/"/g, "\\"").replace(/'/g, "\\'")}`).gravity("South").out("-splice", "0x20").writePromise(text2);
|
|
const size4 = await gm(text2).sizePromise();
|
|
resultBuffer = await gm(await command2.bufferPromise(image.type, image.delay)).gravity("North").coalesce().extent(600, size2.height + size3.height + size4.height).out("null:", "(", text2, "-set", "page", `+0+${size2.height + size3.height}`, ")", "-layers", "composite").bufferPromise(image.type, image.delay);
|
|
} else {
|
|
resultBuffer = await command2.bufferPromise(image.type, image.delay);
|
|
}
|
|
processMessage.delete();
|
|
return {
|
|
file: resultBuffer,
|
|
name: `motivate.${image.type}`
|
|
};
|
|
};
|
|
|
|
exports.aliases = ["motivational", "motiv", "demotiv", "demotivational", "poster", "motivation"];
|
|
exports.category = 5;
|
|
exports.help = "Creates a motivational poster";
|