(3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0)
int imagecolordeallocate (resource im, int index)
int imagecolordeallocate
imagecolordeallocate() désalloue une couleur précédemment allouée avec la fonction imagecolorallocate().
<?php $white = imagecolorallocate($im, 255, 255, 255); imagecolordeallocate($im, $white); ?>