views:

1873

answers:

3

I have an image, but it keep doesn't display. I check the image properties (right-click and chose properties), and the I found the "type" is text/html not JPEG image. Is this because the type that cause my images dont show up?? How to change the "Type" value? I am using php...

I display the image in a simple html [img] tag...

EDIT:

Yeah, i tried.. If i include the

<?php header('Content-Type:image/jpeg'); ?>

It display the URL, very weird huh??

I am using apache, the image is generated by php code...

<img src="<?php echo bloginfo('template_url'); ?>/thumb.php?src=<?php echo get_post_meta($post->ID, "image", $single = true); ?>&amp;h=195&amp;w=540&amp;zc=1&amp;q=95" alt="<?php the_title(); ?>
+2  A: 
header('Content-Type: image/jpeg');

Make sure to call the header() function before doing any output or you will get a "Headers already sent" error.

Lennart
+1  A: 

Sounds like the image was generated by some kind of server-side script. If it was generated by a PHP script that you have access to, just include a call to header(), like this:

header('Content-Type: image/jpeg');

Make sure to call header() before outputting anything—even a blank line or stray space that was accidentally output will cause header() to fail (usually it's best if you put your call to header() at the beginning of the script).

If you don't have access to the script that generated the image, then you're out of luck, I think.

htw
A: 

i a new bie and is there any common content type for all sort of files

and im using that to attach a file in mail

if any one plz and thank u

If you want to ask a followup question you should not post it as an answer, but as a new question. In the upper right there is a "Ask Question" button that allows you to ask a new question. Try to make the question you ask as clear as possible, so that people can help you.
sth