30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
// really don't like this file
|
|
|
|
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 an image to mirror!`;
|
|
const data = `/tmp/${Math.random().toString(36).substring(2, 15)}.${image.type}`;
|
|
const data2 = `/tmp/${Math.random().toString(36).substring(2, 15)}.${image.type}`;
|
|
gm(image.data).gravity("East").crop("50%", 0).strip().write(data2, (error) => {
|
|
if (error) console.error;
|
|
gm(data2).flop().strip().write(data, async (error) => {
|
|
if (error) console.error;
|
|
gm(data).append(data2, true).toBuffer(image.type, (error, resultBuffer) => {
|
|
if (error) console.error;
|
|
return message.channel.createMessage("", {
|
|
file: resultBuffer,
|
|
name: `waaw.${image.type}`
|
|
});
|
|
});
|
|
});
|
|
});
|
|
};
|
|
|
|
exports.aliases = ["magik3", "mirror"];
|
|
exports.category = 5;
|
|
exports.help = "Mirrors the right side of an image onto the left";
|