21 lines
No EOL
971 B
JavaScript
21 lines
No EOL
971 B
JavaScript
const gm = require("gm").subClass({
|
|
imageMagick: true
|
|
});
|
|
const gmToBuffer = require("../utils/gmbuffer.js");
|
|
|
|
exports.run = async (message) => {
|
|
message.channel.sendTyping();
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image to make a GameXplain thumbnail meme!`;
|
|
const template = "./assets/images/gamexplain.png";
|
|
const command = gm(template).background("white").out("null:").out("(").out(image.path).coalesce().out("-virtual-pixel", "transparent").resize("1181x571!").out(")").compose("over").gravity("Center").out("-geometry", "+0+40").out("-layers", "composite");
|
|
const buffer = await gmToBuffer(command, image.outputType);
|
|
return message.channel.createMessage("", {
|
|
file: buffer,
|
|
name: `gamexplain.${image.outputType}`
|
|
});
|
|
};
|
|
|
|
exports.aliases = ["gx"];
|
|
exports.category = 5;
|
|
exports.help = "Makes a GameXplain thumbnail from an image"; |