18 lines
No EOL
632 B
JavaScript
18 lines
No EOL
632 B
JavaScript
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!`;
|
|
const buffer = await gm(image.path).coalesce().resize("%[fx:(u.w*19)/2]x%[fx:u.h/2]!").bufferPromise(image.type);
|
|
return message.channel.createMessage("", {
|
|
file: buffer,
|
|
name: `wide.${image.type}`
|
|
});
|
|
};
|
|
|
|
exports.aliases = ["w19", "wide19"];
|
|
exports.category = 5;
|
|
exports.help = "Stretches an image to 19x its width"; |