//this is the image to check , change this
if($img = @GetImageSize("testimage.gif"))
{
//if image exists display the following information
echo "image exists , here is some info
";
//display width in pixels
echo "width = $img[0]
";
//display height in pixels
echo "height = $img[1]
";
}
else
{
//cant find image message
echo"image does not exist";
}
?>