Image width and height using PHP

by satheeshkumar 2012-08-16 22:53:54

Get the width and height of an image using PHP,


Use the following function to get the height and width of the image in PHP ,



list($width, $height) = getimagesize("image path");
echo $width;
echo $height;


990
like
0
dislike
0
mail
flag

You must LOGIN to add comments