2019-10-24 18:54:23 +00:00
|
|
|
const gm = require("gm").subClass({
|
|
|
|
imageMagick: true
|
|
|
|
});
|
|
|
|
const gmToBuffer = require("../utils/gmbuffer.js");
|
|
|
|
|
|
|
|
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 tile!`;
|
2020-02-18 20:44:39 +00:00
|
|
|
gm(image.path).coalesce().command("montage").out("-duplicate").out(24).tile("5x5").geometry("+0+0").stream("miff", async (error, output) => {
|
2019-12-10 15:53:43 +00:00
|
|
|
if (error) throw error;
|
2020-02-18 20:44:39 +00:00
|
|
|
const data = gm(output).coalesce().resize("800x800>");
|
2019-10-24 18:54:23 +00:00
|
|
|
return message.channel.createMessage("", {
|
2020-02-18 20:44:39 +00:00
|
|
|
file: await gmToBuffer(data, image.outputType),
|
|
|
|
name: `tile.${image.outputType}`
|
2019-10-24 18:54:23 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["wall2"];
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Creates a tile pattern from an image";
|