vote up 2 vote down star

I am looking for a way to take a user uploaded image that is currently put in a temporary location ex: /tmp/jkhjkh78 and create a php image from it, autodetecting the format.

Is there a more clever way to do this than a bunch of try/catching with imagefromjpeg, imagefrompng, etc?

flag

50% accept rate

4 Answers

vote up 7 vote down

This is one of the functions of getimagesize. They probably should have called it "getimageinfo", but that's PHP for you.

link|flag
vote up 1 vote down

You could try finfo_file(), apparently an improved version of mime_content_type().

Edit: OK, getimagesize() is better..

link|flag
vote up 1 vote down

Check out this question/answer for more options: http://stackoverflow.com/questions/134833/how-do-i-find-the-mime-type-of-a-file-with-php#134893

link|flag
vote up 0 vote down

You can call a system command (if you're under linux/unix), file if you like:

kender@eira:~$ file a
a: JPEG image data, EXIF standard 2.2
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.