I\'ve been looking for PHP code to apply a Gaussian blur to images.
What I\'ve done was like this:
You can use ImageMagic
Original Image
Run via exec
exec
convert a.png -blur 0x3 a_blur.png
OR Run
convert a.png -blur 0x8 a_blur.png