-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
Module worked correctly but not as expected. My 960x960 image made 800x800 but its size increased to 524kbs from 148kbs.
var thumb = require('node-thumbnail').thumb;
// thumb(options, callback);
thumb({
source: 'H:/Desktop/Golden Associates/Golden_Web/Themes/LetsPlay/Node/thumbnail/Abhi2.jpg', // could be a filename: dest/path/image.jpg
destination: 'H:/Desktop/Golden Associates/Golden_Web/Themes/LetsPlay/Node/thumbnail',
concurrency: 4
}, function(files, err, stdout, stderr) {
if(err)
console.log(err);
if (files)
console.log(files);
if (stderr)
console.log(stderr)
console.log('All done!');
});
I hope you can understand what I want :)
Metadata
Metadata
Assignees
Labels
No labels

