ru_php/ext/gd/tests/imagefill_1.phpt

24 lines
486 B
PHP

--TEST--
imagefill() infinite loop with wrong color index
--EXTENSIONS--
gd
--SKIPIF--
<?php
if (!function_exists("imagefttext")) {
die("skip imagefttext() not available.");
}
?>
--FILE--
<?php
$im = imagecreate(100,100);
$white = imagecolorallocate($im, 255,255,255);
$blue = imagecolorallocate($im, 0,0,255);
$green = imagecolorallocate($im, 0,255,0);
print_r(imagecolorat($im, 0,0));
imagefill($im, 0,0,$white + 3);
print_r(imagecolorat($im, 0,0));
?>
--EXPECT--
00