imagecolorsforindex
(PHP 3, PHP 4 , PHP 5)
imagecolorsforindex -- Retourne la couleur associée à un index
Description
array
imagecolorsforindex ( resource image, int index )
imagecolorsforindex() retourne un tableau associatif
avec les couleurs rouge (red) , vert (green), bleu (blue) et alpha qui
contiennent les valeurs des couleurs correspondantes.
Exemple 1. Exemple avec imagecolorsforindex()
<?php
// on ouvre une image $im = imagecreatefrompng('nexen.png');
// on obtient une couleur $start_x = 40; $start_y = 50; $color_index = imagecolorat($im, $start_x, $start_y);
// on la rend humainement lisible $color_tran = imagecolorsforindex($im, $color_index);
// quelle est-elle ? print_r($color_tran);
?>
|
L'exemple ci-dessus va afficher : Array
(
[red] => 226
[green] => 222
[blue] => 252
[alpha] => 0
) |
|
Voir aussi
imagecolorat() et
imagecolorexact().