mirror of
https://github.com/php/php-src.git
synced 2026-04-16 20:41:18 +02:00
According to https://wiki.php.net/rfc/image2wbmp, we deprecate `image2wbmp()`, rename the `$threshold` parameter to `$foreground`, and remove superfluous code.
21 lines
419 B
PHP
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===
|