(PHP 4, PHP 5)
imagecolordeallocate — De-allocate a color for an image
De-allocates a color previously allocated with imagecolorallocate() or imagecolorallocatealpha().
Ресурс на изображение, върнат от някоя от функциите за създаване на изображения като например imagecreatetruecolor().
The color identifier.
Връща TRUE при успех или FALSE при неуспех.
Example #1 Using imagecolordeallocate()
<?php
$white = imagecolorallocate($im, 255, 255, 255);
imagecolordeallocate($im, $white);
?>