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

Here is my ./configure line :

./configure --enable-debug --with-apxs=/usr/local/apache/bin/apxs
--with-xml --with-jpeg-dir --with-png-dir --with-gd
--enable-gd-native-ttf --with-freetype-dir --with-zlib-dir
--with-openssl --enable-sysvsem --enable-sysvshm --with-xsl
--with-mysql --with-pgsql --enable-memory-limit

I use the bundled GD.


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

[2005-02-28 11:09:23] [EMAIL PROTECTED]

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions. 

Even if you think it is not a bug, we often know better than you,
please consult the support channels first before even considering
to reopen this report.

Thank you for your interest in PHP.

Seems like you use an external GD.

Please try using the bundled gd (configure --with-gd, not
with-gd=/path/to/ext/gd).

--Pierre

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

[2005-02-28 10:59:33] guth at fiifo dot u-psud dot fr

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

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

[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