(PHP 4, PHP 5, PHP 7, PHP 8)
imagecolorsforindex — 获取索引的颜色
返回具有 red、green、blue 和 alpha 的键名的关联数组,包含了指定颜色索引的适当值。
版本 | 说明 |
---|---|
8.0.0 |
image 现在需要 GdImage 实例;之前需要有效的 gd resource。
|
8.0.0 |
如果 color 超出范围,imagecolorsforindex()
现在抛出 ValueError 异常;之前返回 false 。
|
示例 #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);
// 显示该颜色的值
print_r($color_tran);
?>
以上示例的输出类似于:
Array ( [red] => 226 [green] => 222 [blue] => 252 [alpha] => 0 )