summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imagefilter_error3.phpt
blob: 4440f7d000ac546606c28a547c2ee4fc786f2b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Testing wrong parameter passing of PIXELATE 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_PIXELATE, 'wrong parameter'));
?>
--EXPECTF--
Warning: imagefilter() expects parameter 3 to be integer, %unicode_string_optional% given in %s on line %d
bool(false)