请输入您要查询的百科知识:

 

词条 imagecolorsforindex
释义

简介

(PHP 3, PHP 4, PHP 5)imagecolorsforindex -- 取得某索引的颜色

函数说明

array imagecolorsforindex ( resource image, int index )

本函数返回一个具有 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

)

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/23 15:42:31