1
0
mirror of https://github.com/php/php-src.git synced 2026-04-16 20:41:18 +02:00
Files
archived-php-src/ext/gd/tests/image2wbmp_error.phpt
Christoph M. Becker 3cbf594dfd Deprecate image2wbmp()
According to https://wiki.php.net/rfc/image2wbmp, we deprecate
`image2wbmp()`, rename the `$threshold` parameter to `$foreground`, and
remove superfluous code.
2018-06-10 00:33:42 +02:00

21 lines
419 B
PHP

--TEST--
image2wbmp() is deprecated
--SKIPIF--
<?php
if (!extension_loaded('gd')) die('skip gd extension not available');
?>
--FILE--
<?php
$im = imagecreate(10, 10);
imagecolorallocate($im, 0, 0, 0);
image2wbmp($im, __DIR__ . '/image2wbmp_error.wbmp');
?>
===DONE===
--CLEAN--
<?php
unlink(__DIR__ . '/image2wbmp_error.wbmp');
?>
--EXPECTF--
Deprecated: Function image2wbmp() is deprecated in %s on line %d
===DONE===