jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
451 B

const gm = require('gm')
, uploadDirectory = require(__dirname+'/uploadDirectory.js');
module.exports = (filename, folder, temp) => {
return new Promise((resolve, reject) => {
const filePath = temp === true ? filename : `${uploadDirectory}/${folder}/${filename}`;
gm(`${filePath}[0]`) //0 for first frame of gifs, much faster
.identify(function (err, data) {
if (err) {
return reject(err);
}
return resolve(data)
});
});
};