image2wbmp_error.phpt 419 B

1234567891011121314151617181920
  1. --TEST--
  2. image2wbmp() is deprecated
  3. --SKIPIF--
  4. <?php
  5. if (!extension_loaded('gd')) die('skip gd extension not available');
  6. ?>
  7. --FILE--
  8. <?php
  9. $im = imagecreate(10, 10);
  10. imagecolorallocate($im, 0, 0, 0);
  11. image2wbmp($im, __DIR__ . '/image2wbmp_error.wbmp');
  12. ?>
  13. ===DONE===
  14. --CLEAN--
  15. <?php
  16. unlink(__DIR__ . '/image2wbmp_error.wbmp');
  17. ?>
  18. --EXPECTF--
  19. Deprecated: Function image2wbmp() is deprecated in %s on line %d
  20. ===DONE===