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().
image
An image resource, returned by one of the image creation functions, such as imagecreatetruecolor().
color
The color identifier.
Returns TRUE
on success or FALSE
on failure.
Example #1 Using imagecolordeallocate()
<?php
$white = imagecolorallocate($im, 255, 255, 255);
imagecolordeallocate($im, $white);
?>
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;
}