vending-machine/mobile/node_modules/@jimp/plugin-gaussian
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
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-gaussian

Gaussian blur an image.

Applies a true Gaussian blur to the image (warning: this is VERY slow)

Usage

  • @param {number} r the pixel radius of the blur
  • @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.gaussian(15);
}

main();