imagelayereffect_error3.phpt 528 B

1234567891011121314151617
  1. --TEST--
  2. Testing imagelayereffect() with invalid resource of GD library
  3. --CREDITS--
  4. Rafael Dohms <rdohms [at] gmail [dot] com>
  5. #testfest PHPSP on 2009-06-20
  6. --SKIPIF--
  7. <?php
  8. if (!extension_loaded("gd")) die("skip GD not present");
  9. if (!GD_BUNDLED) die('skip function only available in bundled, external GD detected');
  10. ?>
  11. --FILE--
  12. <?php
  13. $resource = tmpfile();
  14. $layer = imagelayereffect($resource, IMG_EFFECT_REPLACE);
  15. ?>
  16. --EXPECTF--
  17. Warning: imagelayereffect(): supplied resource is not a valid Image resource in %s on line %d