image height and width
Posted: Wed May 12, 2004 7:51 pm
can anyone guide me some direction for the image file dimension ?
thanks : )
thanks : )
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
// Get the dimensions of the image
$size = getimagesize($file_tmp_name);
$image_width = $size[0];
$image_height = $size[1];