Pixler is converter is pixelating image.
https://grapgrap.github.io/pixler-demo-page/
npm install pixler
yarn add pixler
const target: File | string; // target will pixelate. target could image file or image url.
const factor: number; // factor is how much will be pixelated.
pixler.pixelate(target, factor, (result) => {
// result is pixelated image.
});
This project is licensed under the MIT License - see the LICENSE.md file for details