|
||
---|---|---|
.. | ||
dist | ||
src | ||
test | ||
CHANGELOG.md | ||
LICENSE | ||
README.md | ||
index.d.ts | ||
package.json |
README.md

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