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, PHP 8)
imagecolordeallocate — De-allocate a color for an image
De-allocates a color previously allocated with imagecolorallocate() or imagecolorallocatealpha().
image
Una risorsa immagine, restituita da una delle funzioni di creazione immagine, come imagecreatetruecolor().
color
The color identifier.
Restituisce true
in caso di successo, false
in caso di fallimento.
Versione | Descrizione |
---|---|
8.0.0 |
image expects a GdImage
instance now; previously, a valid gd resource was expected.
|
Example #1 Using imagecolordeallocate()
<?php
$white = imagecolorallocate($im, 255, 255, 255);
imagecolordeallocate($im, $white);
?>