ID: 13103
Updated by: sander
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: Output Control
Operating System: FreeBSD 4.2
PHP Version: 4.0.4pl1
New Comment:

Are you sure there is no whitespace before the <?php-tag???

And if that's not the case, can you try the latest snapshot or at least 4.0.6?

Previous Comments:
------------------------------------------------------------------------

[2001-09-03 04:38:49] [EMAIL PROTECTED]

Example:

$im = imageCreateFromPNG( "test-ob.png" );
ob_start();
imagePNG( $im );
$outbuffer = ob_get_contents();
ob_end_clean();
header( "Content-Type: image/gif" );
print $outbuffer;

(test url: "http://www.osd.dk/test/test-ob.php";)

The script above will fail on the "header( ..." line stating that output has already 
been sent and thus no more headers can be added.

For some reason the imagePNG() function (and other image output functions) seems to 
end the header section of the output even though output buffering is active.

I'm currently unable to test this on a newer version of php.

Regards,
Tais M. Hansen


------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=13103&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