2020-02-19 14:29:48 +00:00
|
|
|
const gm = require("gm").subClass({
|
|
|
|
imageMagick: true
|
|
|
|
});
|
|
|
|
|
|
|
|
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 a GIF to reverse!`;
|
2020-02-25 20:45:47 +00:00
|
|
|
if (image.type !== "gif") return `${message.author.mention}, that isn't a GIF!`;
|
2020-03-15 17:54:51 +00:00
|
|
|
const buffer = await gm(image.path).coalesce().out("-reverse").bufferPromise(image.type, image.delay);
|
2020-04-12 19:51:48 +00:00
|
|
|
return {
|
2020-02-19 14:29:48 +00:00
|
|
|
file: buffer,
|
|
|
|
name: "reverse.gif"
|
2020-04-12 19:51:48 +00:00
|
|
|
};
|
2020-02-19 14:29:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["backwards"];
|
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Reverses a GIF";
|