From:             [EMAIL PROTECTED]
Operating system: Windows98
PHP version:      4.0.4pl1
PHP Bug Type:     Filesystem function related
Bug description:  garbled image file

I was previously using fopen() and fpassthru to grab a gif image and pass it to the 
browser. This worked fine.
Then I installed PHP4.0.4pl1 and the image that now gets returned is garbled (the 
image appears to be the right dimensions, but filesize shows 150 bytes, not 406 bytes 
which is what the image actually is).

On any html page the following line was installed:

<IMG src="track.php?ref=12345">

track.php then looks like this:

<?
  $image = fopen ("track.gif", "r");

  fpassthru ($image);
?>

I tried the same with the readfile() function, as follows:

<?
  readfile("track.gif");
?>

same result.


Other file I/O appears to be fine.


-- 
Edit Bug report at: http://bugs.php.net/?id=9509&edit=1



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to