GD- und Image-Funktionen
PHP Manual

imagecolordeallocate

(PHP 4, PHP 5, PHP 7)

imagecolordeallocateLöscht eine Farbdefinition

Beschreibung:

int imagecolordeallocate ( resource $im , int $index )

Die Funktion ImageColorDeAllocate() löscht eine vorher über ImageColorAllocate() ermittelte Farbe.

$weiss = ImageColorAllocate($im, 255, 255, 255);
ImageColorDeAllocate($im, $weiss);


GD- und Image-Funktionen
PHP Manual