|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2010-04-15 03:40 UTC] luk-4u at hotmail dot com
Description:
------------
while running as cgi on nginx(the response is 'chunked' according to firebug), and ob_start is activated using imagepng,imagegif to outputimages to the browsers, these two are not correct, the browser only received part of the image, while imagejpeg is correct. And without ob_start or running as apache+mod_php(response not 'chunked') all three are correct. And if add
'ob_end_clean()' before imagepng, it worked correctly.
phpinfo:
gd
GD Support enabled
GD Version bundled (2.0.34 compatible)
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.2.1
GIF Read Support enabled
GIF Create Support enabled
JPG Support enabled
PNG Support enabled
WBMP Support enabled
XBM Support enabled
Test script:
---------------
ob_start();
header('Content-type: image/png');
imagepng(imagecreatefrompng('/home/webroot/a.png'));
//imagegif(imagecreatefrompng('/home/webroot/a.png'));
//imagejpeg(imagecreatefrompng('/home/webroot/a.png'));
exit;
Expected result:
----------------
the image rendered entirely
Actual result:
--------------
firefox:the image rendered partly
ie6: imagepng and imagegif behaves more weirdly
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 00:00:01 2025 UTC |
test.php: <?php ob_start(); //ob_end_clean(); header('Content-type: image/png'); imagepng(imagecreatefrompng('/home/webroot/a.png')); //imagepng(imagecreatefrompng('/home/webroot/a.png'), dirname(__FILE__).'/test.png'); //imagegif(imagecreatefrompng('/home/webroot/a.png')); //imagejpeg(imagecreatefrompng('/home/webroot/a.png')); exit; ?> The script is as sime as above, and the environment is nginx+fastcgi(php5.2.6), assume u hv a vhost setted up and the file /home/webroot/a.png is available, just access it through http://ur_vhost_name.com/test.php 3ks