I'm attempting to pass an image on from a form using multipart/form-data, and it works fine. But I need to get the dimensions [mainly height] of the image. I know I could copy() it and use getimagesize(), but I would like to know if there is another way.
Michael_C
Mar 12 2005, 09:43 PM
Why not just getimagesize($_FILES['userfile']['tmp_name']).
QUOTE(Michael_C @ Mar 12 2005, 02:43 PM)
Why not just getimagesize($_FILES['userfile']['tmp_name']).
Right, of course.
Thanks.