vending-machine/mobile/node_modules/@jimp/plugin-normalize
2026-04-03 06:07:13 +08:00
..
dist 1 2026-04-03 06:07:13 +08:00
es 1 2026-04-03 06:07:13 +08:00
src 1 2026-04-03 06:07:13 +08:00
test 1 2026-04-03 06:07:13 +08:00
CHANGELOG.md 1 2026-04-03 06:07:13 +08:00
index.d.ts 1 2026-04-03 06:07:13 +08:00
LICENSE 1 2026-04-03 06:07:13 +08:00
package.json 1 2026-04-03 06:07:13 +08:00
README.md 1 2026-04-03 06:07:13 +08:00

@jimp/plugin-normalize

Normalize an image's colors.

Normalizes an images color by computing a histogram.

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.normalize();
}

main();