2019-09-13 20:02:41 +00:00
|
|
|
const gm = require("gm").subClass({
|
|
|
|
imageMagick: true
|
|
|
|
});
|
|
|
|
|
|
|
|
exports.run = async (message) => {
|
|
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image to add some magik!`;
|
2020-02-25 20:45:47 +00:00
|
|
|
if (image.type === "gif") return `${message.author.mention}, this command doesn't work with GIFs!`;
|
2019-09-13 20:02:41 +00:00
|
|
|
const processMessage = await message.channel.createMessage("<a:processing:479351417102925854> Processing... This might take a while");
|
2020-04-23 22:38:01 +00:00
|
|
|
const resultBuffer = await gm(image.path).in("(").in("(").coalesce().scale(600, 600).out(")").out("-liquid-rescale", "300x300").out(")").out("-liquid-rescale", "600x600").bufferPromise(image.type, image.delay);
|
2020-02-21 00:26:49 +00:00
|
|
|
await processMessage.delete();
|
2020-04-12 19:51:48 +00:00
|
|
|
return {
|
2020-02-21 00:26:49 +00:00
|
|
|
file: resultBuffer,
|
2020-02-25 20:45:47 +00:00
|
|
|
name: `magik.${image.type}`
|
2020-04-12 19:51:48 +00:00
|
|
|
};
|
2019-09-13 20:02:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["imagemagic", "imagemagick", "imagemagik", "magic", "magick", "cas", "liquid"];
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Adds a content aware scale effect to an image";
|