Code Snippets Php

//check if image exists
if($img = @GetImageSize("testimage.gif"))
{
echo "image exists";
}
else
{
echo "image does not exist";
}
?>