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); ?>

imagecolorresolve

(PHP 4, PHP 5, PHP 7, PHP 8)

imagecolorresolveGet the index of the specified color or its closest possible alternative

Descrizione

imagecolorresolve(
    GdImage $image,
    int $red,
    int $green,
    int $blue
): int

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.

Elenco dei parametri

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.

Valori restituiti

Returns a color index.

Log delle modifiche

Versione Descrizione
8.0.0 image expects a GdImage instance now; previously, a valid gd resource was expected.

Esempi

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
)

Vedere anche: