2019-09-13 20:02:41 +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-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 mirror!`;
|
2020-02-04 18:46:00 +00:00
|
|
|
const data = `/tmp/${Math.random().toString(36).substring(2, 15)}.miff`;
|
2020-02-21 00:26:49 +00:00
|
|
|
const size = await gm(image.path).sizePromise();
|
2020-03-09 12:39:46 +00:00
|
|
|
await gm(image.path).coalesce().gravity("South").crop(0, "50%").out("+repage").writePromise(data);
|
2020-03-15 17:54:51 +00:00
|
|
|
// const buffer = await gm(data2).extent("%[fx:u.w]", "%[fx:u.h*2]").out("null:").out(data).gravity("North").out("-layers", "Composite").bufferPromise(image.type, image.delay);
|
|
|
|
const buffer = await gm(data).extent(size.width, size.height).out("null:").out("(").out(data).flip().out(")").geometry(`+0+${size.height / 2}`).out("-layers", "Composite").bufferPromise(image.type, image.delay);
|
2020-04-12 19:51:48 +00:00
|
|
|
return {
|
2020-02-21 00:26:49 +00:00
|
|
|
file: buffer,
|
2020-02-25 20:45:47 +00:00
|
|
|
name: `hooh.${image.type}`
|
2020-04-12 19:51:48 +00:00
|
|
|
};
|
2019-09-13 20:02:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["magik6", "mirror4"];
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Mirrors the bottom of an image onto the top";
|