2019-10-24 20:35:06 +00:00
|
|
|
const gm = require("gm").subClass({
|
|
|
|
imageMagick: true
|
|
|
|
});
|
|
|
|
const gmToBuffer = require("../utils/gmbuffer.js");
|
|
|
|
|
|
|
|
exports.run = async (message) => {
|
2019-12-02 20:47:22 +00:00
|
|
|
message.channel.sendTyping();
|
2019-10-24 20:35:06 +00:00
|
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image to make a "who did this" meme!`;
|
|
|
|
const template = "./assets/images/whodidthis.png";
|
2020-02-18 20:44:39 +00:00
|
|
|
const command = gm(template).coalesce().out("null:").out(image.path).gravity("Center").resize("374x374>").out("-layers", "composite").out("-layers", "optimize");
|
2020-02-19 14:25:45 +00:00
|
|
|
const buffer = await gmToBuffer(command, image.outputType);
|
2019-10-24 20:35:06 +00:00
|
|
|
return message.channel.createMessage("", {
|
2020-02-19 14:25:45 +00:00
|
|
|
file: buffer,
|
2020-02-18 20:44:39 +00:00
|
|
|
name: `wdt.${image.outputType}`
|
2019-10-24 20:35:06 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.aliases = ["whodidthis"];
|
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Creates a \"WHO DID THIS\" meme from an image";
|