|
|
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 | |
Applies a true Gaussian blur to the image (warning: this is VERY slow)
import jimp from 'jimp';
async function main() {
const image = await jimp.read('test/image.png');
image.gaussian(15);
}
main();