summaryrefslogtreecommitdiff
path: root/ext/gd/tests/bug72596.phpt
blob: 2eb7dadb76c48c2dd29d775400b2dc51b02c3256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Bug #72596 (imagetypes function won't advertise WEBP support)
--SKIPIF--
<?php
if (!extension_loaded('gd')) die('skip gd extension not available');
?>
--FILE--
<?php
var_dump(function_exists('imagewebp') === (bool) (imagetypes() & IMG_WEBP));
?>
--EXPECT--
bool(true)