imagefill_1.phpt 505 B

123456789101112131415161718192021222324
  1. --TEST--
  2. imagefill() infinite loop with wrong color index
  3. --EXTENSIONS--
  4. gd
  5. --SKIPIF--
  6. <?php
  7. if (!function_exists("imagefttext")) {
  8. die("skip imagefttext() not available.");
  9. }
  10. ?>
  11. --FILE--
  12. <?php
  13. $im = imagecreate(100,100);
  14. $white = imagecolorallocate($im, 255,255,255);
  15. $blue = imagecolorallocate($im, 0,0,255);
  16. $green = imagecolorallocate($im, 0,255,0);
  17. print_r(imagecolorat($im, 0,0));
  18. imagefill($im, 0,0,$white + 3);
  19. print_r(imagecolorat($im, 0,0));
  20. imagedestroy($im);
  21. ?>
  22. --EXPECT--
  23. 00