PHP 圖像處理PHP 圖像處理

imagecolorsforindex — 取得某索引的顏色。

語法

array imagecolorsforindex ( resource $image , int $index )

本函數(shù)返回一個具有 red,green,blue 和 alpha 的鍵名的關聯(lián)數(shù)組,包含了指定顏色索引的相應的值。

實例

<?php

// 打開一幅圖像
$im = imagecreatefrompng('youj-logo.png');

// 取得一點的顏色
$start_x = 40;
$start_y = 20;
$color_index = imagecolorat($im, $start_x, $start_y);

// 使其可讀
$color_tran = imagecolorsforindex($im, $color_index);

// 顯示該顏色的值
print_r($color_tran);

?>

以上實例的輸出類似于:

Array
(
    [red] => 195
    [green] => 223
    [blue] => 165
    [alpha] => 64
)

相關文章

PHP 圖像處理PHP 圖像處理