bug66590_1.phpt 314 B

123456789101112131415161718
  1. --TEST--
  2. Bug #66590 (imagewebp() doesn't pad to even length) - segfault
  3. --EXTENSIONS--
  4. gd
  5. --SKIPIF--
  6. <?php
  7. if (!function_exists('imagewebp')) die('skip WebP support not available');
  8. ?>
  9. --FILE--
  10. <?php
  11. $im = imagecreatetruecolor(6, 6);
  12. ob_start();
  13. imagewebp($im);
  14. ob_end_clean();
  15. echo "ready\n";
  16. ?>
  17. --EXPECT--
  18. ready