READ the manual.

The snippet is correct but if you want to take advantage of the saving features of this function follow the function information at the top of the page. Jumping straight to the user snippets is a mistake as they are user contributed and may not document the whole function.

int imagejpeg ( resource image [, string filename [, int quality]])


imagejpeg($im,'myfile.jpg',80);



Doug Coning wrote:


Hi All,

I'm using the following code to try to download images automatically from a
directory:

header('Content-Type: image/jpeg');
$im = imagecreatefromjpeg("001_SM77GR.jpg");
imagejpeg($im,'',85);
imagedestroy($im);

I copied this code from PHP.net.  However, when I run the above code, it
doesn't download the image, it just shows the image in the browser.  I'm
using IE 6 for my browser.

How I get PHP to download this image?

Thanks!

Doug Coning










--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to