20 lines
No EOL
811 B
JavaScript
20 lines
No EOL
811 B
JavaScript
const gm = require("gm").subClass({
|
|
imageMagick: true
|
|
});
|
|
|
|
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 add a Bandicam watermark!`;
|
|
const watermark = "./assets/images/bandicam.png";
|
|
const size = await gm(image.path).sizePromise();
|
|
const buffer = await gm(image.path).coalesce().out("null:").out(watermark).gravity("North").resize(null, size.height).out("-layers", "composite").bufferPromise(image.type);
|
|
return message.channel.createMessage("", {
|
|
file: buffer,
|
|
name: `bandicam.${image.type}`
|
|
});
|
|
};
|
|
|
|
exports.aliases = ["bandi"];
|
|
exports.category = 5;
|
|
exports.help = "Adds the Bandicam watermark to an image"; |