With this little bit of code you are able to get the height and width of an image in php.
list($width, $height) =getimagesize($file); echo $width; echo $height;
With this little bit of code you are able to get the height and width of an image in php.
list($width, $height) =getimagesize($file); echo $width; echo $height;