1--TEST-- 2Testing imagecolordeallocate() of GD library with Out of range intergers (Below) 3--CREDITS-- 4Rafael Dohms <rdohms [at] gmail [dot] com> 5#testfest PHPSP on 2009-06-20 6--SKIPIF-- 7<?php 8 if (!extension_loaded("gd")) die("skip GD not present"); 9?> 10--FILE-- 11<?php 12$image = imagecreate(180, 30); 13$white = imagecolorallocate($image, 255, 255, 255); 14 15$totalColors = imagecolorstotal($image); 16 17$result = imagecolordeallocate($image, -1.0); 18var_dump($result); 19?> 20--EXPECTF-- 21Warning: imagecolordeallocate(): Color index -1 out of range in %s on line %d 22bool(false) 23