2019-12-14 04:13:35 +00:00
|
|
|
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!`;
|
2020-02-18 20:44:39 +00:00
|
|
|
gm(image.path).size(async (error, size) => {
|
2019-12-14 04:13:35 +00:00
|
|
|
if (error) throw error;
|
2020-01-07 15:38:13 +00:00
|
|
|
if (size.width > 10000) return `${message.author.mention}, this image is too wide!`;
|
2020-02-18 20:44:39 +00:00
|
|
|
const data = gm(image.path).coalesce().resize(`${(size.width * 19) / 2}x${size.height / 2}!`);
|
2020-02-19 14:25:45 +00:00
|
|
|
const buffer = await gmToBuffer(data, image.outputType);
|
2019-12-14 04:13:35 +00:00
|
|
|
return message.channel.createMessage("", {
|
2020-02-19 14:25:45 +00:00
|
|
|
file: buffer,
|
2020-02-18 20:44:39 +00:00
|
|
|
name: `wide.${image.outputType}`
|
2019-12-14 04:13:35 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["w19", "wide19"];
|
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Stretches an image to 19x its width";
|