.. | ||
dist | ||
es | ||
src | ||
LICENSE | ||
package.json | ||
README.md |
@jimp/plugin-invert
Invert an image's colors.
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();