Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 474 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 474 Bytes

@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();