I am trying to get image size (image dimensions, width and height) of hundreds of remote images and getimagesize is way too slow.
I hae done some reading and found out the quickest way would be to use get_file_contents to read a certain aount of bytes from the images and examining the size within the binary data.
Anyone attempted this before? How would I examine different formats? Anyone has seen any library for this?

getimagesize()will be blazing fast. After all, it only reads certain binary bytes from the images. – kijin Jan 8 '11 at 20:24Content-Lengthheader? – salathe Jan 8 '11 at 20:39