Home Tutorial Php Phpgd PHP GD get image dimensions

 
 

PHP GD get image dimensions
Posted on: November 11, 2009 at 12:00 AM
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

Related Tags for PHP GD get image dimensions: