ID:               32042
 User updated by:  guth at fiifo dot u-psud dot fr
 Reported By:      guth at fiifo dot u-psud dot fr
-Status:           Feedback
+Status:           Open
 Bug Type:         GD related
 Operating System: Linux
 PHP Version:      5CVS-2005-02-21 (dev)
 Assigned To:      pajoye
 New Comment:

Actual result : http://artichow.org/gd/actual.png
Expected result : http://artichow.org/gd/expected.png


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

[2005-02-28 09:38:32] [EMAIL PROTECTED]

Cannot reproduce here, please provide an url to the expected result and
one with what you get now.

--Pierre

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

[2005-02-21 10:40:17] guth at fiifo dot u-psud dot fr

Description:
------------
imagerectangle() does not work with small rectangles.
With the same code, imagefilledrectangle() works.

See the result:
http://haricow.org/gd/rectangle.png

Reproduce code:
---------------
<?php
$image = imagecreatetruecolor(10, 10);

$white = imagecolorallocate($image, 255, 255, 255);

imagerectangle($image, 2, 4, 8, 4, $white);

imagecolordeallocate($image, $white);

header('Content-Type: image/png');
imagepng($image);
?>

Expected result:
----------------
A rectangle.

Actual result:
--------------
A strange shape.


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


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

Reply via email to