ID: 25476 Updated by: [EMAIL PROTECTED] Reported By: ernesto at music dot lv -Status: Open +Status: Feedback Bug Type: Reproducible crash Operating System: Linux or Windows, Apache PHP Version: 4.3.3 New Comment:
Thank you for this bug report. To properly diagnose the problem, we need a backtrace to see what is happening behind the scenes. To find out how to generate a backtrace, please read http://bugs.php.net/bugs-generating-backtrace.php Once you have generated a backtrace, please submit it to this bug report and change the status back to "Open". Thank you for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2003-09-10 15:25:10] ernesto at music dot lv Description: ------------ when using imagecopymergegray with pct value of 100, everything is fine, i.e., imagecopymergegray works exactly as imagecopy. but, when setting pct value to 99 or less, apache crashes. Reproduce code: --------------- $pic1 = imagecreatefromjpeg("my.jpg"); // 100x100px $pic2 = imagecreatetruecolor(100, 100); imacecopy($pic2, $pic1, 0, 0, 0, 0, 100, 100); imagecopymergegray($pic2, $pic1, 0, 0, 0, 0, 100, 100, 50); imagejpeg($pic2,"my2.jpg"); imagedestroy($pic2); Expected result: ---------------- my2.jpg - slightly saturated version of my.jpg. Actual result: -------------- a crash. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=25476&edit=1
