mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
19 lines
438 B
PHP
19 lines
438 B
PHP
--TEST--
|
|
Bug #66387 (Stack overflow with imagefilltoborder)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('gd')) die('skip gd extension not available!');
|
|
if (!GD_BUNDLED && version_compare(GD_VERSION, '2.2.1', '<')) {
|
|
die("skip test requires GD 2.2.1 or higher");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$im = imagecreatetruecolor(20, 20);
|
|
$c = imagecolorallocate($im, 255, 0, 0);
|
|
imagefilltoborder($im, 0, -999355, $c, $c);
|
|
echo "ready\n";
|
|
?>
|
|
--EXPECT--
|
|
ready
|