array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'function.imagecolorresolve.php', 1 => 'imagecolorresolve', 2 => 'Get the index of the specified color or its closest possible alternative', ), 'up' => array ( 0 => 'ref.image.php', 1 => 'GD and Image Funzioni', ), 'prev' => array ( 0 => 'function.imagecolormatch.php', 1 => 'imagecolormatch', ), 'next' => array ( 0 => 'function.imagecolorresolvealpha.php', 1 => 'imagecolorresolvealpha', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/image/functions/imagecolorresolve.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 4, PHP 5, PHP 7, PHP 8)
imagecolorresolve — Get the index of the specified color or its closest possible alternative
This function is guaranteed to return a color index for a requested color, either the exact color or the closest possible alternative.
Se l'immagine è stata creata da un file, solo i colori usati nell'immagine sono risolti. I colori presenti solo nella palette non sono risolti.
image
Una risorsa immagine, restituita da una delle funzioni di creazione immagine, come imagecreatetruecolor().
red
Valore della componente rossa.
green
Valore della componente verde.
blue
Valore della componente blu.
Returns a color index.
Versione | Descrizione |
---|---|
8.0.0 |
image expects a GdImage
instance now; previously, a valid gd resource was expected.
|
Example #1 Using imagecoloresolve() to get colors from an image
<?php
// Load an image
$im = imagecreatefromgif('phplogo.gif');
// Get closest colors from the image
$colors = array();
$colors[] = imagecolorresolve($im, 255, 255, 255);
$colors[] = imagecolorresolve($im, 0, 0, 200);
// Output
print_r($colors);
?>
Il precedente esempio visualizzerà qualcosa simile a:
Array ( [0] => 89 [1] => 85 )