php-src/ext/gd/tests/imagefilter_error19.phpt
2009-07-01 00:56:01 +00:00

19 lines
521 B
PHP
Executable File

--TEST--
Testing wrong parameter type of BRIGHTNESS in imagefilter() of GD library
--CREDITS--
Guilherme Blanco <guilhermeblanco [at] hotmail [dot] com>
#testfest PHPSP on 2009-06-20
--SKIPIF--
<?php
if (!extension_loaded("gd")) die("skip GD not present");
?>
--FILE--
<?php
$image = imagecreatetruecolor(180, 30);
var_dump(imagefilter($image, IMG_FILTER_BRIGHTNESS, 'wrong parameter'));
?>
--EXPECTF--
Warning: imagefilter() expects parameter 3 to be long, %unicode_string_optional% given in %s on line %d
bool(false)