mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
a375d54785
Cf. PR #6787. Closes GH-6994.
21 lines
401 B
PHP
21 lines
401 B
PHP
--TEST--
|
|
libgd #106 (imagerectangle 1x1 draws 1x3)
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
$im = imagecreatetruecolor(10,10);
|
|
imagerectangle($im, 1,1, 1,1, 0xFFFFFF);
|
|
$c1 = imagecolorat($im, 1,1);
|
|
$c2 = imagecolorat($im, 1,2);
|
|
$c3 = imagecolorat($im, 2,1);
|
|
$c4 = imagecolorat($im, 2,2);
|
|
if ($c1 == 0xFFFFFF && $c2 == 0 && $c3 == 0 && $c4 == 0) {
|
|
echo "Ok";
|
|
} else {
|
|
echo "failed";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Ok
|