mrmBot-Matrix/commands/hooh.js

32 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-09-13 20:02:41 +00:00
// really don't like this file
const gm = require("gm").subClass({
imageMagick: true
});
const gmToBuffer = require("../utils/gmbuffer.js");
2019-09-13 20:02:41 +00:00
exports.run = async (message) => {
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!`;
const data = `/tmp/${Math.random().toString(36).substring(2, 15)}.miff`;
const data2 = `/tmp/${Math.random().toString(36).substring(2, 15)}.miff`;
gm(image.data).size((error, size) => {
if (error) throw error;
gm(image.data).coalesce().gravity("South").crop(0, "50%").out("+repage").write(data2, (error) => {
if (error) throw error;
gm(data2).flip().write(data, async (error) => {
if (error) throw error;
const command = gm(data2).extent(size.width, size.height).out("null:").out(data).geometry(`+0+${size.height / 2}`).out("-layers", "Composite").out("-layers", "Optimize");
2019-09-13 20:02:41 +00:00
return message.channel.createMessage("", {
file: await gmToBuffer(command, image.type),
2019-09-13 20:02:41 +00:00
name: `hooh.${image.type}`
});
});
});
});
};
exports.aliases = ["magik6", "mirror4"];
exports.category = 5;
exports.help = "Mirrors the bottom of an image onto the top";