imagecolordeallocate
(PHP 4, PHP 5, PHP 7, PHP 8)
imagecolordeallocate — 取消影象顏色的分配
說明
imagecolordeallocate(resource
$image
, int $color
): boolimagecolordeallocate() 函式取消先前由 imagecolorallocate() 或 imagecolorallocatealpha() 分配的顏色。
<?php
$white = imagecolorallocate($im, 255, 255, 255);
imagecolordeallocate($im, $white);
?>