2019-09-13 20:02:41 +00:00
|
|
|
const gm = require("gm").subClass({
|
|
|
|
imageMagick: true
|
|
|
|
});
|
|
|
|
|
|
|
|
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 New Funky Mode!`;
|
|
|
|
const watermark = "./assets/images/funky.png";
|
2020-02-21 00:26:49 +00:00
|
|
|
const size = await gm(image.path).sizePromise();
|
2020-02-25 20:45:47 +00:00
|
|
|
const buffer = await gm(image.path).coalesce().out("null:").out(watermark).gravity("NorthEast").resize(null, size.height).out("-layers", "composite").bufferPromise(image.type);
|
2020-02-21 00:26:49 +00:00
|
|
|
return message.channel.createMessage("", {
|
|
|
|
file: buffer,
|
2020-02-25 20:45:47 +00:00
|
|
|
name: `funky.${image.type}`
|
2019-09-13 20:02:41 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["funkymode", "newfunkymode", "funkykong"];
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Adds the New Funky Mode banner to an image";
|