imagecolorsforindex
(PHP 4, PHP 5, PHP 7, PHP 8)
imagecolorsforindex — 取得某索引的顏色
說明
imagecolorsforindex(resource
$image
, int $index
): array本函式返回一個具有 red,green,blue 和 alpha 的鍵名的關聯陣列,包含了指定顏色索引的相應的值。
示例 #1 imagecolorsforindex() 例子
<?php
// 打開一幅影象
$im = imagecreatefrompng('nexen.png');
// 取得一點的顏色
$start_x = 40;
$start_y = 50;
$color_index = imagecolorat($im, $start_x, $start_y);
// 使其可讀
$color_tran = imagecolorsforindex($im, $color_index);
// 顯示該顏色的值
echo '<pre>';
print_r($color_tran);
echo '</pre>';
?>
本例將輸出:
Array ( [red] => 226 [green] => 222 [blue] => 252 [alpha] => 0 )