Hi, I'm writing here in the image section, just because my question is basically related with image management.
Opening a page with this code:
<?
header("Content-type: image/jpeg");
passthru('http://ipAddress/images/myjpeg.jpeg');
?>
should I see myjpeg.jpeg?
I read php.net manual over this function and quoting:
A common use for this is to execute something like the pbmplus utilities that can output an image stream directly. By setting the Content-type to image/gif and then calling a pbmplus program to output a gif, you can create PHP scripts that output images directly.
then I went to pbmplus page discovering that it can convert image type.
ok. end of the journey.
can someone send some code to output images or just a link to some documentation about that?
thanks a lot.


