imagecolorsforindex 取得某索引的颜色

发表日期:2021-07-01 08:55:57 | 来源: | | 浏览(863) 分类:GD 和图像处理 函数

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
)

参见 imagecolorat()imagecolorexact()

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。