2020-08-28 02:34:12 +00:00
|
|
|
const magick = require("../utils/image.js");
|
2020-06-27 22:17:57 +00:00
|
|
|
|
|
|
|
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 pixelate!`;
|
2020-10-18 21:53:35 +00:00
|
|
|
const { buffer, type } = await magick.run({
|
2020-08-28 02:34:12 +00:00
|
|
|
cmd: "resize",
|
2021-01-05 02:53:34 +00:00
|
|
|
path: image.path,
|
|
|
|
type: image.type
|
2020-08-28 02:34:12 +00:00
|
|
|
});
|
2020-06-27 22:17:57 +00:00
|
|
|
return {
|
|
|
|
file: buffer,
|
2020-10-18 21:53:35 +00:00
|
|
|
name: `pixelate.${type}`
|
2020-06-27 22:17:57 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["pixel", "small"];
|
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Pixelates an image";
|