PHP GD get image dimensions


 

PHP GD get image dimensions

This example shows how to get dimensions of image in php gd.

This example shows how to get dimensions of image in php gd.

<?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

Ads