1--TEST-- 2Testing imagecolordeallocate() of GD library 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 = imagecreatetruecolor(180, 30); 13 14$white = imagecolorallocate($image, 255, 255, 255); 15$result = imagecolordeallocate($image, $white); 16 17var_dump($result); 18 19?> 20--EXPECT-- 21bool(true) 22