A faster way to get HTML color values:
function rgb2html($r, $g, $b){
$r = sprintf('%02x',$r);
$g = sprintf('%02x',$g);
$b = sprintf('%02x',$b);
return '#'.$r.$g.$b;
}
(PHP 4, PHP 5, PHP 7)
imagecolordeallocate — De-allocate a color for an image
$image
, int $color
)De-allocates a color previously allocated with imagecolorallocate() or imagecolorallocatealpha().
성공 시 TRUE
를, 실패 시 FALSE
를 반환합니다.
Example #1 Using imagecolordeallocate()
<?php
$white = imagecolorallocate($im, 255, 255, 255);
imagecolordeallocate($im, $white);
?>