mrmBot-Matrix/commands/shutterstock.js

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