mrmBot-Matrix/commands/ifunny.js

23 lines
898 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 iFunny watermark!`;
const watermark = "./assets/images/ifunny.png";
gm(image.path).size(async (error, size) => {
if (error) throw error;
const data = gm(image.path).coalesce().out("null:").out(watermark).gravity("South").resize(size.width, null).out("-layers", "composite");
const buffer = await gmToBuffer(data, image.outputType);
2019-09-13 20:02:41 +00:00
return message.channel.createMessage("", {
file: buffer,
name: `ifunny.${image.outputType}`
2019-09-13 20:02:41 +00:00
});
});
};
exports.category = 5;
exports.help = "Adds the iFunny watermark to an image";