Image width and height using PHP
by satheeshkumar[ Edit ] 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;