Skip to content

Instantly share code, notes, and snippets.

View mtrabelsi's full-sized avatar
🇩🇪
the moon

Marwen Trabelsi mtrabelsi

🇩🇪
the moon
View GitHub Profile
@mtrabelsi
mtrabelsi / gaussianblur_filter.class.js
Created October 21, 2024 01:27 — forked from ncou/gaussianblur_filter.class.js
Gaussian Blur filter for fabric.js
/**
* Gaussian blur filter for fabricjs
* Example:
* obj.filters.push(new fabric.Image.filters.GaussianBlur(6));
* obj.applyFilters(canvas.renderAll.bind(canvas));
*
* Adapted from <a href="http://www.quasimondo.com/BoxBlurForCanvas">http://www.quasimondo.com/BoxBlurForCanvas</a>
*/
(function() {