PHP GD imagecolorsforindex() 函数

返回上一级

PHP imagecolorsforindex() 函数用于取得某索引的颜色

函数原型

array imagecolorsforindex ( resource $image , int $index )

返回含有 red,green,blue 、 alpha 键名的关联数组,包含了指定颜色索引的相应的值

范例

<?php

// 打开一幅图像
$im = imagecreatefrompng('twle-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);

运行以上 PHP 范例,输出结果如下

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

延伸阅读

返回上一级

PHP 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.