mrmBot-Matrix/commands/blur.js

17 lines
518 B
JavaScript
Raw Normal View History

const gm = require("gm").subClass({
imageMagick: true
});
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 blur!`;
2020-03-15 17:54:51 +00:00
const buffer = await gm(image.path).coalesce().blur(15).bufferPromise(image.type, image.delay);
return {
file: buffer,
name: `blur.${image.type}`
};
2019-09-13 20:02:41 +00:00
};
exports.category = 5;
exports.help = "Blurs an image";