imagecreatefromstring_webp.phpt 388 B

12345678910111213141516171819
  1. --TEST--
  2. imagecreatefromstring() - WEBP format
  3. --EXTENSIONS--
  4. gd
  5. --SKIPIF--
  6. <?php
  7. if (!(imagetypes() & IMG_WEBP)) die('skip WEBP support required');
  8. ?>
  9. --FILE--
  10. <?php
  11. // create an image from a WEBP string representation
  12. $im = imagecreatefromstring(file_get_contents(__DIR__ . '/imagecreatefromstring.webp'));
  13. var_dump(imagesx($im));
  14. var_dump(imagesy($im));
  15. ?>
  16. --EXPECT--
  17. int(10)
  18. int(10)