ImageColorDeAllocate

(ismeretlen PHP verzió)

ImageColorDeAllocate --  De-allocate a color for an image

Description

int imagecolordeallocate (int im, int index)

The ImageColorDeAllocate() function de-allocates a color previously allocated with the ImageColorAllocate() function.

  1 
  2 $white = ImageColorAllocate($im, 255, 255, 255);
  3 ImageColorDeAllocate($im, $white);
  4