mrmBot-Matrix/commands/stretch.js

20 lines
597 B
JavaScript

const magick = require("../utils/image.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!`;
const { buffer, type } = await magick.run({
cmd: "resize",
path: image.path,
stretch: true
});
return {
file: buffer,
name: `stretch.${type}`
};
};
exports.aliases = ["aspect", "ratio", "aspect43", "43"];
exports.category = 5;
exports.help = "Stretches an image to 4:3 aspect ratio";