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) => {
|
2019-12-02 20:47:22 +00:00
|
|
|
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 Shutterstock watermark!`;
|
|
|
|
const watermark = "./assets/images/shutterstock.png";
|
2020-02-21 00:26:49 +00:00
|
|
|
const size = await gm(image.path).sizePromise();
|
|
|
|
const command = gm(image.path).coalesce().out("null:").out(watermark).gravity("Center").resize(null, size.height).out("-layers", "composite");
|
|
|
|
const buffer = await gmToBuffer(command, image.outputType);
|
|
|
|
return message.channel.createMessage("", {
|
|
|
|
file: buffer,
|
|
|
|
name: `shutterstock.${image.outputType}`
|
2019-09-13 20:02:41 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.aliases = ["stock", "stockphoto"];
|
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Adds the Shutterstock watermark to an image";
|