bug66387.phpt 386 B

12345678910111213141516171819
  1. --TEST--
  2. Bug #66387 (Stack overflow with imagefilltoborder)
  3. --EXTENSIONS--
  4. gd
  5. --SKIPIF--
  6. <?php
  7. if (!GD_BUNDLED && version_compare(GD_VERSION, '2.2.1', '<')) {
  8. die("skip test requires GD 2.2.1 or higher");
  9. }
  10. ?>
  11. --FILE--
  12. <?php
  13. $im = imagecreatetruecolor(20, 20);
  14. $c = imagecolorallocate($im, 255, 0, 0);
  15. imagefilltoborder($im, 0, -999355, $c, $c);
  16. echo "ready\n";
  17. ?>
  18. --EXPECT--
  19. ready