- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP imagecolorsforindex - 取得某索引的颜色
imagecolorsforindex — 取得某索引的颜色。
语法
array imagecolorsforindex ( resource $image , int $index )
本函数返回一个具有 red,green,blue 和 alpha 的键名的关联数组,包含了指定颜色索引的相应的值。
实例
<?php // 打开一幅图像 $im = imagecreatefrompng('zyiz-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)
相关文章
imagecolorat() 取得某像素的颜色索引值。
imagecolorexact() 取得指定颜色的索引值。
关注微信小程序
扫描二维码
程序员编程王