--TEST--
Testing wrong parameter value of COLORIZE 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(18030);

var_dump(imagefilter($imageIMG_FILTER_COLORIZE800255255)); // Wrong value is truncated to 255
?>
--EXPECTF--
bool(true)