uni-ticket-system/node_modules/@jimp/plugin-invert/README.md
2023-12-05 10:11:10 +08:00

474 B

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