mrmBot-Matrix/commands/bandicam.js

24 lines
936 B
JavaScript
Raw Normal View History

2019-09-13 20:02:41 +00:00
const gm = require("gm").subClass({
imageMagick: true
});
const gmToBuffer = require("../utils/gmbuffer.js");
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 add a Bandicam watermark!`;
const watermark = "./assets/images/bandicam.png";
gm(image.path).size(async (error, size) => {
if (error) throw error;
const data = gm(image.path).coalesce().out("null:").out(watermark).gravity("North").resize(null, size.height).out("-layers", "composite");
const buffer = await gmToBuffer(data, image.outputType);
2019-09-13 20:02:41 +00:00
return message.channel.createMessage("", {
file: buffer,
name: `bandicam.${image.outputType}`
2019-09-13 20:02:41 +00:00
});
});
};
exports.aliases = ["bandi"];
exports.category = 5;
exports.help = "Adds the Bandicam watermark to an image";