archieve-projects/微信机器人/node_modules/@jimp/plugin-invert/README.md

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