2019-10-24 20:35:06 +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-10-24 20:35:06 +00:00
|
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image to make a wall from!`;
|
2020-02-21 00:26:49 +00:00
|
|
|
const output = await gm(image.path).coalesce().resize(128).streamPromise("miff");
|
2020-03-15 17:54:51 +00:00
|
|
|
const buffer = await gm(output).coalesce().virtualPixel("tile").matteColor("none").out("-background", "none").resize("512x512!").out("-distort").out("Perspective").out("0,0,57,42 0,128,63,130 128,0,140,60 128,128,140,140").bufferPromise(image.type, image.delay);
|
2020-02-21 00:26:49 +00:00
|
|
|
return message.channel.createMessage("", {
|
|
|
|
file: buffer,
|
2020-02-25 20:45:47 +00:00
|
|
|
name: `wall.${image.type}`
|
2019-10-24 20:35:06 +00:00
|
|
|
});
|
|
|
|
};
|
2019-12-02 20:47:22 +00:00
|
|
|
|
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Creates a wall from an image";
|