|
|
hace 1 año | |
|---|---|---|
| .. | ||
| dist | hace 1 año | |
| es | hace 1 año | |
| node_modules | hace 1 año | |
| src | hace 1 año | |
| CHANGELOG.md | hace 1 año | |
| LICENSE | hace 1 año | |
| README.md | hace 1 año | |
| index.d.ts | hace 1 año | |
| package.json | hace 1 año | |
A fast blur algorithm that produces similar effect to a Gaussian blur - but MUCH quicker
import jimp from 'jimp';
async function main() {
const image = await jimp.read('test/image.png');
image.blur(5);
}
main();