1--TEST-- 2Testing wrong parameter value of COLORIZE in imagefilter() of GD library 3--CREDITS-- 4Guilherme Blanco <guilhermeblanco [at] hotmail [dot] com> 5#testfest PHPSP on 2009-06-20 6--EXTENSIONS-- 7gd 8--FILE-- 9<?php 10$image = imagecreatetruecolor(180, 30); 11 12var_dump(imagefilter($image, IMG_FILTER_COLORIZE, 800, 255, 255)); // Wrong value is truncated to 255 13?> 14--EXPECT-- 15bool(true) 16