Uploaded image's dimensions

A

Anonymous

Guest
just a quick question:

when uploading an image using POST, are there attributes for the image's width and heigth in $_FILES ? (f.ex. $_FILES['image']['width'])

Didn't find anything in the documentation..
 
pio said:
when uploading an image using POST, are there attributes for the image's width and heigth in $_FILES ? (f.ex. $_FILES['image']['width'])

File upload is designed for files of all types, not just images, so there's nothing in there specific to images. To get image dimensions, you'll have to use the GD library or similar.
 
Back
Top