mrmBot-Matrix/commands/wide.js

24 lines
857 B
JavaScript

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 stretch!`;
gm(image.data).size(async (error, size) => {
if (error) throw error;
const data = gm(image.data).resize(`${(size.width * 19) / 2}x${size.height / 2}!`);
//.gravity("Center").extent(size.width, size.height)
const resultBuffer = await gmToBuffer(data);
return message.channel.createMessage("", {
file: resultBuffer,
name: `wide.${image.type}`
});
});
};
exports.aliases = ["w19", "wide19"];
exports.category = 5;
exports.help = "Stretches an image to 19x its width";