Guest User

Untitled

a guest
Jan 19th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. var gm = require('gm');
  2.  
  3. gm('/path/to/image.jpg')
  4. .resize(353, 257) // use your own width and height
  5. .autoOrient()
  6. .write(writeStream, function (err) {
  7. if (!err) console.log(' hooray! ');
  8. });
  9.  
  10. var gm = require('gm');
  11.  
  12. gm('/path/to/image.jpg')
  13. .resize(353, 257) // use your own width and height
  14. .autoOrient()
  15. .write(writeStream, function (err) {
  16. if (!err) console.log(' hooray! ');
  17. });
Add Comment
Please, Sign In to add comment