PHP imagecolorsforindex() 取得某索引的颜色用法及示例 - PHP教程

由网友 大卫 发布 阅读 8

PHP imagecolorsforindex() 取得某索引的颜色用法及示例 - PHP教程

PHP 图像处理

imagecolorsforindex — 取得某索引的颜色。

语法

array imagecolorsforindex ( resource $image , int $index )

本函数返回一个具有 red,green,blue 和 alpha 的键名的关联数组,包含了指定颜色索引的相应的值。

示例

<?php
// 打开一幅图像
$im = imagecreatefrompng('div.cn-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 imagecolorexactalpha() 函数取得指定的颜色加透明度的索引值 PHP mb_strlen() 函数