|
|
hace 10 meses | |
|---|---|---|
| .. | ||
| dist | hace 10 meses | |
| es | hace 10 meses | |
| node_modules | hace 10 meses | |
| src | hace 10 meses | |
| CHANGELOG.md | hace 10 meses | |
| LICENSE | hace 10 meses | |
| README.md | hace 10 meses | |
| index.d.ts | hace 10 meses | |
| package.json | hace 10 meses | |
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();