gif support
This commit is contained in:
parent
c70988384e
commit
48acabf3a6
1 changed files with 31 additions and 23 deletions
|
@ -41,8 +41,6 @@ class memeCommand extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message, args) {
|
async exec(message, args) {
|
||||||
let output = `${os.tmpdir()}/meme${message.id}.jpg`;
|
|
||||||
|
|
||||||
let options = args.message.trim().split('|');
|
let options = args.message.trim().split('|');
|
||||||
|
|
||||||
if (options[0] == undefined)
|
if (options[0] == undefined)
|
||||||
|
@ -62,11 +60,11 @@ class memeCommand extends Command {
|
||||||
// Create new graphicsmagick instance
|
// Create new graphicsmagick instance
|
||||||
fetch(url)
|
fetch(url)
|
||||||
.then(res => {
|
.then(res => {
|
||||||
const dest = fs.createWriteStream(`${os.tmpdir()}/${message.id}.jpg`);
|
const dest = fs.createWriteStream(`${os.tmpdir()}/${message.id}`);
|
||||||
res.body.pipe(dest);
|
res.body.pipe(dest);
|
||||||
dest.on('finish', async () => {
|
dest.on('finish', async () => {
|
||||||
|
|
||||||
let img = gm(`${os.tmpdir()}/${message.id}.jpg`);
|
let img = gm(`${os.tmpdir()}/${message.id}`);
|
||||||
|
|
||||||
// Set some defaults
|
// Set some defaults
|
||||||
const TOP_TEXT = options[0];
|
const TOP_TEXT = options[0];
|
||||||
|
@ -78,9 +76,13 @@ class memeCommand extends Command {
|
||||||
const STROKE_WEIGHT = 2;
|
const STROKE_WEIGHT = 2;
|
||||||
const PADDING = 40;
|
const PADDING = 40;
|
||||||
|
|
||||||
|
img.format(function(err, format) {
|
||||||
|
if (err) {
|
||||||
|
return message.channel.send('An error has occured, is it an image?');
|
||||||
|
}
|
||||||
|
let output = `${os.tmpdir()}/meme${message.id}.${format.toLocaleLowerCase()}`;
|
||||||
// Get the image size to calculate top and bottom text positions
|
// Get the image size to calculate top and bottom text positions
|
||||||
img.size(function(err, value) {
|
img.size(function(err, value) {
|
||||||
console.log(value);
|
|
||||||
// Set text position for top and bottom
|
// Set text position for top and bottom
|
||||||
const TOP_POS = Math.abs((value.height / 2) - PADDING) * -1;
|
const TOP_POS = Math.abs((value.height / 2) - PADDING) * -1;
|
||||||
const BOTTOM_POS = (value.height / 2) - PADDING;
|
const BOTTOM_POS = (value.height / 2) - PADDING;
|
||||||
|
@ -95,10 +97,16 @@ class memeCommand extends Command {
|
||||||
.write(output, function(err) {
|
.write(output, function(err) {
|
||||||
loadingmsg.delete();
|
loadingmsg.delete();
|
||||||
if (err) return message.channel.send('An error just occured! is it a static image?');
|
if (err) return message.channel.send('An error just occured! is it a static image?');
|
||||||
return message.channel.send({files: [output]});
|
message.delete();
|
||||||
|
return message.channel.send(`Made by ${message.author.username}`,{files: [output]})
|
||||||
|
.catch(() => {
|
||||||
|
return message.channel.send('The image is too big to fit on discord!');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
return message.channel.send(`Please input a correct link \`${err}\``);
|
return message.channel.send(`Please input a correct link \`${err}\``);
|
||||||
|
|
Loading…
Reference in a new issue