const gm = require("gm").subClass({ imageMagick: true }); const gmToBuffer = require("../utils/gmbuffer.js"); 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 iFunny watermark!`; const watermark = "./assets/images/ifunny.png"; gm(image.data).size(async (error, size) => { if (error) throw error; const data = gm(image.data).coalesce().out("null:").out(watermark).gravity("South").resize(size.width, null).out("-layers", "composite").out("-layers", "optimize"); return message.channel.createMessage("", { file: await gmToBuffer(data), name: `ifunny.${image.type}` }); }); }; exports.category = 5; exports.help = "Adds the iFunny watermark to an image";