--TEST--
libgd #106 (imagerectangle 1x1 draws 1x3)
--SKIPIF--
<?php
    
if (!extension_loaded('gd')) die("skip gd extension not available\n");
?>
--FILE--
<?php
$im 
imagecreatetruecolor(10,10);
imagerectangle($im1,11,10xFFFFFF);
$c1 imagecolorat($im1,1);
$c2 imagecolorat($im1,2);
$c3 imagecolorat($im2,1);
$c4 imagecolorat($im2,2);
if (
$c1 == 0xFFFFFF && $c2 == && $c3 == && $c4 == 0) {
    echo 
"Ok";
} else {
    echo 
"failed";
}
?>
--EXPECT--
Ok