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
437 B
PHP
21 lines
437 B
PHP
--TEST--
|
|
Bug #19366 (gdimagefill() function crashes (fixed in bundled libgd))
|
|
--EXTENSIONS--
|
|
gd
|
|
--SKIPIF--
|
|
<?php
|
|
if (!GD_BUNDLED && version_compare(GD_VERSION, '2.2.2', '<')) {
|
|
die("skip test requires GD 2.2.2 or higher");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$img = imagecreatetruecolor(100, 100);
|
|
imagecolortransparent($img, -1000000);
|
|
imagetruecolortopalette($img, TRUE, 3);
|
|
imagecolortransparent($img, 9);
|
|
echo "OK";
|
|
?>
|
|
--EXPECT--
|
|
OK
|