<?php
if
($img = @GetImageSize("images.jpg")){
echo
"image exists , here is some info<br>";echo
"width = $img[0]<br>";echo
"height = $img[1]<br>";}
else
{
echo
"image does not exist";}
?>
After running the program you will get the following output
OUTPUT :image exists , here is some info width = 143 height = 136