php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #28147 Bundled GD2 crashes when antialias is enabled
Submitted: 2004-04-25 21:12 UTC Modified: 2004-04-25 21:45 UTC
From: jpgraph at aditus dot nu Assigned: derick (profile)
Status: Closed Package: Reproducible crash
PHP Version: 4.3.6 OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: jpgraph at aditus dot nu
New email:
PHP Version: OS:

 

 [2004-04-25 21:12 UTC] jpgraph at aditus dot nu
Description:
------------
Bundled GD2 in 4.3.4, 4.3.5 and 4.3.6 crashes when antialias is enabled.

When antialias is enabled through the imageantialias($img,$flag) function then the Apache process crashes when trying to paint a line at the edge of the image.

This is reproducible 100% using Apache 1.3.28 on our setup. If antialias is disabled everything works fine.

It seems to be a boundary problem on the edge of the image. See example below.





Reproduce code:
---------------
<?php
// 
// This script will generate a Seg Fault on Linux
//
$im  = imagecreatetruecolor(300, 300);
$w  = imagecolorallocate($im, 255, 255, 255);
$red = imagecolorallocate($im, 255, 0, 0);

imagefilledrectangle($im,0,0,299,299,$w);

imageantialias($im,true);
imageline($im, 299, 299, 0, 299, $red);

header("Content-type: image/png");
imagepng($im);
imagedestroy($im);
?>

Expected result:
----------------
A line from bottom right corner to bottom left corner.

Actual result:
--------------
PHP Segmentation fault

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-04-25 21:27 UTC] derick@php.net
Verified, and it's indeed an egde-issue.
 [2004-04-25 21:45 UTC] derick@php.net
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.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Nov 23 10:01:28 2024 UTC