up vote 2 down vote favorite
1
share [g+] share [fb]
header("Content-type:   image/gif");  
readfile($filename);

The above can only be used to show gif images.

Is there a header that can be used to show jpg/png/gif?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 4 down vote accepted

This should work for all image types:

$size = getimagesize($filename);

header('Content-type: ' . $size['mime']);
readfile($filename);
link|improve this answer
feedback
header("Content-type:   image/gif");

OR

header("Content-type:   image/jpeg");

OR

header("Content-type:   image/png");
link|improve this answer
Do I have other options than list them all? – another Oct 31 '09 at 11:17
3  
You can't use more than one. It should match the content you're sending. If you're readfile'ing a GIF, it should be image/gif, a JPEG should be image/jpeg, and a PNG should be image/png. – ceejayoz Oct 31 '09 at 11:23
Look <img src="" />,you dont have to specify its exact type. – another Oct 31 '09 at 11:25
1  
That's because servers send the right content type so the browser knows what to do with it. – ceejayoz Oct 31 '09 at 11:26
@new - This is called a MIME Type. en.wikipedia.org/wiki/Internet_media_type – txyoji Oct 31 '09 at 11:26
show 4 more comments
feedback

You need to know or figure out what type of file it is, and send the proper type. There's no catch-all content type for images that'll work for GIF, PNG, and JPEG all at once.

finfo_file() will let you detect the type of an image (or any other file).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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