ID: 41442 Updated by: [EMAIL PROTECTED] Reported By: rainer dot collet at gmx dot net Status: Assigned Bug Type: GD related Operating System: debian etch PHP Version: 5.2.2 -Assigned To: pajoye +Assigned To: tony2001 New Comment:
Thanks for the patch! it looks good, go ahead. Previous Comments: ------------------------------------------------------------------------ [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
