GD and Image Funzioni
PHP Manual

imagecolorclosesthwb

(PHP 4 >= 4.0.1, PHP 5)

imagecolorclosesthwbGet the index of the color which has the hue, white and blackness

Descrizione

int imagecolorclosesthwb ( resource $image , int $red , int $green , int $blue )

Get the index of the color which has the hue, white and blackness nearest the given color.

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 an integer with the index of the color which has the hue, white and blackness nearest the given color.

Esempi

Example #1 Example of using imagecolorclosesthwb()

<?php
$im 
imagecreatefromgif('php.gif');

echo 
'HWB: ' imagecolorclosesthwb($im116115152);

imagedestroy($im);
?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

HWB: 33

Log delle modifiche

Versione Descrizione
5.3.0 This function is now available on Windows

Vedere anche:


GD and Image Funzioni
PHP Manual