mrmBot-Matrix/commands/9gag.js

21 lines
837 B
JavaScript
Raw Normal View History

const fs = require("fs");
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 9GAG watermark!`;
const watermark = "./assets/images/9gag.png";
const data = gm(image.path).coalesce().out("null:").out(watermark).gravity("East").out("-layers", "composite").out("-layers", "optimize");
2019-09-13 20:02:41 +00:00
return message.channel.createMessage("", {
file: await gmToBuffer(data, image.outputType),
name: `9gag.${image.outputType}`
2019-09-13 20:02:41 +00:00
});
};
exports.aliases = ["ninegag", "gag"];
exports.category = 5;
exports.help = "Adds the 9gag watermark to an image";