@hekerman/plugin-invert
v0.16.1
Published
invert an image.
Downloads
2
Readme
Invert an image's colors.
Usage
- @param {function(Error, Jimp)} cb (optional) a callback for when complete
import jimp from 'jimp';
async function main() {
const image = await jimp.read('test/image.png');
image.invert();
}
main();