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