21 lines
No EOL
619 B
JavaScript
21 lines
No EOL
619 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,
|
|
type: image.type
|
|
});
|
|
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"; |