2019-10-24 18:54:23 +00:00
|
|
|
// really don't like this file
|
|
|
|
|
|
|
|
const gm = require("gm").subClass({
|
|
|
|
imageMagick: true
|
|
|
|
});
|
2020-01-09 01:10:26 +00:00
|
|
|
const gmToBuffer = require("../utils/gmbuffer.js");
|
2019-10-24 18:54:23 +00:00
|
|
|
|
|
|
|
exports.run = async (message) => {
|
2019-12-02 20:47:22 +00:00
|
|
|
message.channel.sendTyping();
|
2019-10-24 18:54:23 +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!`;
|
2019-10-28 16:02:00 +00:00
|
|
|
const data = `/tmp/${Math.random().toString(36).substring(2, 15)}.${image.type}`;
|
|
|
|
const data2 = `/tmp/${Math.random().toString(36).substring(2, 15)}.${image.type}`;
|
2020-01-09 01:10:26 +00:00
|
|
|
gm(image.data).size((error, size) => {
|
2019-12-10 15:53:43 +00:00
|
|
|
if (error) throw error;
|
2020-01-09 01:10:26 +00:00
|
|
|
gm(image.data).gravity("East").crop("50%", 0).out("+repage").write(data2, (error) => {
|
2019-12-10 15:53:43 +00:00
|
|
|
if (error) throw error;
|
2020-01-09 01:10:26 +00:00
|
|
|
gm(data2).flop().write(data, async (error) => {
|
2019-12-10 15:53:43 +00:00
|
|
|
if (error) throw error;
|
2020-01-10 19:40:25 +00:00
|
|
|
const command = gm(data).out("-repage", `${size.width}x${size.height}`).coalesce().out("null:").out("(").out(data2).coalesce().out(")").geometry(`+${size.width / 2}+0`).out("-layers", "Composite").out("-layers", "optimize");
|
2020-01-09 01:10:26 +00:00
|
|
|
const resultBuffer = await gmToBuffer(command);
|
2019-10-24 18:54:23 +00:00
|
|
|
return message.channel.createMessage("", {
|
|
|
|
file: resultBuffer,
|
|
|
|
name: `waaw.${image.type}`
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["magik3", "mirror"];
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Mirrors the right side of an image onto the left";
|