mrmBot-Matrix/commands/implode.js

18 lines
569 B
JavaScript
Raw Normal View History

2019-09-13 20:02:41 +00:00
const gm = require("gm").subClass({
imageMagick: true
});
exports.run = async (message) => {
message.channel.sendTyping();
2019-09-13 20:02:41 +00:00
const image = await require("../utils/imagedetect.js")(message);
if (image === undefined) return `${message.author.mention}, you need to provide an image to implode!`;
const buffer = await gm(image.path).implode([1]).bufferPromise(image.type);
2019-09-13 20:02:41 +00:00
return message.channel.createMessage("", {
file: buffer,
name: `implode.${image.type}`
2019-09-13 20:02:41 +00:00
});
};
exports.aliases = ["imp"];
exports.category = 5;
exports.help = "Implodes an image";