19 lines
No EOL
768 B
JavaScript
19 lines
No EOL
768 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 Shutterstock watermark!`;
|
|
const watermark = "./assets/images/shutterstock.png";
|
|
const buffer = await gm(image.path).coalesce().out("null:").out(watermark).gravity("Center").scale(null, "%[fx:u.h]").out("-layers", "composite").bufferPromise(image.type, image.delay);
|
|
return {
|
|
file: buffer,
|
|
name: `shutterstock.${image.type}`
|
|
};
|
|
};
|
|
|
|
exports.aliases = ["stock", "stockphoto"];
|
|
exports.category = 5;
|
|
exports.help = "Adds the Shutterstock watermark to an image"; |