IMAGECOLORDEALLOCATE(3) 1 IMAGECOLORDEALLOCATE(3)
imagecolordeallocate - De-allocate a color for an image
SYNOPSIS
bool imagecolordeallocate (resource $image, int $color)
DESCRIPTION
De-allocates a color previously allocated with imagecolorallocate(3) or imagecolorallocatealpha(3).
PARAMETERS
o $
image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3).
o $color
- The color identifier.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1
Using imagecolordeallocate(3)
<?php
$white = imagecolorallocate($im, 255, 255, 255);
imagecolordeallocate($im, $white);
?>
SEE ALSO
imagecolorallocate(3), imagecolorallocatealpha(3).
PHP Documentation Group IMAGECOLORDEALLOCATE(3)