imagecreate_error.phpt 480 B

12345678910111213141516171819202122
  1. --TEST--
  2. Testing imagecreate(): error on out of bound parameters
  3. --EXTENSIONS--
  4. gd
  5. --SKIPIF--
  6. <?php
  7. if (!function_exists("imagecreate")) die("skip GD Version not compatible");
  8. ?>
  9. --FILE--
  10. <?php
  11. require __DIR__ . '/func.inc';
  12. trycatch_dump(
  13. fn() => imagecreate(-1, 30),
  14. fn() => imagecreate(30, -1)
  15. );
  16. ?>
  17. --EXPECT--
  18. !! [ValueError] imagecreate(): Argument #1 ($width) must be greater than 0
  19. !! [ValueError] imagecreate(): Argument #2 ($height) must be greater than 0