mrmBot-Matrix/commands/sharpen.js

19 lines
563 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 sharpen!`;
2020-06-17 16:59:45 +00:00
const buffer = await gm(image.path).coalesce().sharpen(10, 3).bufferPromise(image.type, image.delay);
return {
file: buffer,
name: `sharpen.${image.type}`
};
2019-09-13 20:02:41 +00:00
};
exports.aliases = ["sharp"];
exports.category = 5;
exports.help = "Sharpens an image";