Reputation: 3458
Is there a Javascript solution that allows blurring edges of images. I can't use a mask as I need a pixelated kind of blur. Please see the image below.
Upvotes: 2
Views: 967
Reputation: 17454
Pixastic has a blur function available:
http://www.pixastic.com/lib/docs/actions/blur/
You could replicate your edge-blur by cloning the image on top of itself, cropping the front one and blurring the back one.
Upvotes: 1