2019-12-14 04:13:35 +00:00
|
|
|
const gm = require("gm").subClass({
|
|
|
|
imageMagick: true
|
|
|
|
});
|
|
|
|
|
|
|
|
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!`;
|
2020-03-15 17:54:51 +00:00
|
|
|
const buffer = await gm(image.path).coalesce().resize("512x512!").bufferPromise(image.type, image.delay);
|
2019-12-14 04:13:35 +00:00
|
|
|
return message.channel.createMessage("", {
|
2020-02-19 14:25:45 +00:00
|
|
|
file: buffer,
|
2020-02-25 20:45:47 +00:00
|
|
|
name: `stretch.${image.type}`
|
2019-12-14 04:13:35 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["aspect", "ratio", "aspect43", "43"];
|
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Stretches an image to 4:3 aspect ratio";
|