try changing headers sent e.g

header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=001_SM77GR.jpg");

$im = imagecreatefromjpeg("001_SM77GR.jpg");
imagejpeg($im,'',85);
imagedestroy($im);

----- Original Message -----
From: "Doug Coning" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, March 11, 2003 4:40 PM
Subject: [PHP] imagejpeg and downloading images


> 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
>
>


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

Reply via email to