PDA

View Full Version : getting size of an upload image


AN-net
12-24-2004, 07:58 PM
how can i check the size of image just uploaded?

rob_daemon
12-27-2004, 07:15 AM
You can use PHP's getimagesize() (http://us2.php.net/manual/en/function.getimagesize.php) function. It takes the file name of the image as the parameter, so you just pass the $_FILES['uploadedfile']['tmp_name'].