2019-09-29 03:32:43 +00:00
|
|
|
const gm = require("gm").subClass({
|
|
|
|
imageMagick: true
|
|
|
|
});
|
|
|
|
|
|
|
|
exports.run = async (message) => {
|
2019-12-02 20:47:22 +00:00
|
|
|
message.channel.sendTyping();
|
2019-09-29 03:32:43 +00:00
|
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image to swirl!`;
|
2020-03-15 17:54:51 +00:00
|
|
|
const buffer = await gm(image.path).coalesce().swirl(180).bufferPromise(image.type, image.delay);
|
2020-04-12 19:51:48 +00:00
|
|
|
return {
|
2020-02-19 14:25:45 +00:00
|
|
|
file: buffer,
|
2020-02-25 20:45:47 +00:00
|
|
|
name: `swirl.${image.type}`
|
2020-04-12 19:51:48 +00:00
|
|
|
};
|
2019-09-29 03:32:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["whirlpool"];
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Swirls an image";
|