IMG_FILTER_GAUSSIAN_BLUR and IMG_FILTER_SELECTIVE_BLUR
<?php
$image = imagecreatefrompng("space.png");
imagefilter($image, IMG_FILTER_GAUSSIAN_BLUR);
imagefilter($image, IMG_FILTER_SELECTIVE_BLUR);
header("content-type: image/png");
imagepng($image);
imagedestroy($image);
?>
Related examples in the same category