Guest User

Untitled

a guest
Feb 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. const thumb = require('node-thumbnail').thumb;
  2.  
  3. thumb({
  4. source: './img', //can be directory
  5. destination: './pics', // can be directory
  6. concurrency:4,
  7. width: 50
  8. }, (files, err, stdout, stderr)=> console.log('all done!'));
  9.  
  10. /**
  11. if destination already has the same filename as source, it will skip the processing.
  12.  
  13. */
Add Comment
Please, Sign In to add comment