UNPKG

node-lwip

Version:

Comprehensive, fast, and simple image processing and manipulation

17 lines (14 loc) 382 B
/** * Example for using LWIP to mirror an image. */ var path = require('path'), lwip = require('../'); lwip.open('lena.jpg', function(err, image) { if (err) return console.log(err); image.batch() .mirror('x') .writeFile('lena_mirror.jpg', function(err) { if (err) return console.log(err); console.log('done'); }); });