Приглашаем посетить
Григорьев А.А. (grigoryev.lit-info.ru)

imagecolordeallocate


imagecolordeallocate

(PHP 3 >= 3.0.6, PHP 4, PHP 5)

imagecolordeallocate -- De-allocate a color for an image

Description

bool imagecolordeallocate ( resource image, int color )

The imagecolordeallocate() function de-allocates a color previously allocated with imagecolorallocate() or imagecolorallocatealpha().

<?php
$white 
imagecolorallocate($im255255255);
imagecolordeallocate($im$white);
?>

See also imagecolorallocate() and imagecolorallocatealpha().