123456789101112131415161718192021222324 |
- --TEST--
- Bug #72697: select_colors write out-of-bounds
- --EXTENSIONS--
- gd
- --SKIPIF--
- <?php
- if (PHP_INT_MAX !== 9223372036854775807) die("skip for 64-bit long systems only");
- ?>
- --FILE--
- <?php
- require __DIR__ . '/func.inc';
- $img=imagecreatetruecolor(10, 10);
- trycatch_dump(
- fn() => imagetruecolortopalette($img, false, PHP_INT_MAX / 8)
- );
- ?>
- DONE
- --EXPECT--
- !! [ValueError] imagetruecolortopalette(): Argument #3 ($num_colors) must be greater than 0 and less than 2147483647
- DONE
|