Guest User

Untitled

a guest
Jan 21st, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. const gm = require('gm').subClass({imageMagick: true});
  2.  
  3. gm().command('convert').in('yourImage.jpg').in('yourImage.webp').toBuffer(function(err, buffer){
  4. if(err)throw err
  5. //...Do what you need with the buffer
  6. });
Add Comment
Please, Sign In to add comment