1--TEST-- 2Testing imagecolordeallocate() of GD library 3--CREDITS-- 4Rafael Dohms <rdohms [at] gmail [dot] com> 5#testfest PHPSP on 2009-06-20 6--EXTENSIONS-- 7gd 8--FILE-- 9<?php 10$image = imagecreatetruecolor(180, 30); 11 12$white = imagecolorallocate($image, 255, 255, 255); 13$result = imagecolordeallocate($image, $white); 14 15var_dump($result); 16 17?> 18--EXPECT-- 19bool(true) 20