ID:               41442
 Updated by:       [EMAIL PROTECTED]
 Reported By:      rainer dot collet at gmx dot net
-Status:           Assigned
+Status:           Closed
 Bug Type:         GD related
 Operating System: debian etch
 PHP Version:      5.2.2
 Assigned To:      tony2001
 New Comment:

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.




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

[2007-05-22 08:37:45] [EMAIL PROTECTED]

Thanks for the patch!

it looks good, go ahead.

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

[2007-05-21 08:39:59] [EMAIL PROTECTED]

Pierre, check this patch out:
http://tony2001.phpclub.net/dev/tmp/bug41442.diff

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

[2007-05-18 22:42:06] rainer dot collet at gmx dot net

Description:
------------
imagegd2 does not produce valid gd2 image if used under output control

Reproduce code:
---------------
$strBinary = file_get_contents('test.jpg');
$resHandle = imagecreatefromstring($strBinary);
ob_start();
imagegd2($resHandle);
$strBinary2 = ob_get_clean();
imagecreatefromstring($strBinary2);

>>>imagecreatefromstring($strBinary2) issues warning but following
works fine:

$strBinary = file_get_contents('test.jpg');
$resHandle = imagecreatefromstring($strBinary);
imagegd2($resHandle, 'test.gd2');
$strBinary2 = file_get_contents('test.gd2');
imagecreatefromstring($strBinary2); 

Expected result:
----------------
nothing

Actual result:
--------------
second call to imagecreatefromstring issues
function.imagecreatefromstring: Passed data is not in 'GD2' format


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


-- 
Edit this bug report at http://bugs.php.net/?id=41442&edit=1

Reply via email to