imagecolordeallocate()
(PHP 4, PHP 5, PHP 7)
取消图像颜色的分配
说明
imagecolordeallocate(resource $image,int $color): bool
imagecolordeallocate()函数取消先前由imagecolorallocate()或imagecolorallocatealpha()分配的颜色。
<?php $white = imagecolorallocate($im, 255, 255, 255); imagecolordeallocate($im, $white); ?>
参见imagecolorallocate()和imagecolorallocatealpha()。