📜  PHP | imagecolorsforindex()函数

📅  最后修改于: 2022-05-13 01:56:54.260000             🧑  作者: Mango

PHP | imagecolorsforindex()函数

imagecolorsforindex()函数是PHP中的一个内置函数,用于获取给定索引处的颜色。此函数返回一个数组,其中包含指定颜色值的红色、绿色、蓝色和 alpha 键值。
句法:

array imagecolorsforindex ( $image, $index )

参数:该函数接受上面提到的两个参数,如下所述:

  • $image: imagecreatetruecolor()函数用于创建给定尺寸的图像。此函数创建给定大小的空白图像。
  • $index:此参数用于指定颜色索引。

返回值:此函数返回一个关联数组,其中包含给定索引处的红色、绿色、蓝色和 alpha 键值。
下面的程序说明了PHP中的imagecolorsforindex()函数:
方案一:

php


php


输出:

array(4) { 
    ["red"]=> int(34) 
    ["green"]=> int(170) 
    ["blue"]=> int(66) 
    ["alpha"]=> int(0) 
} 

方案二:

PHP


输出:

array(4) { 
    ["red"]=> int(97) 
    ["green"]=> int(57) 
    ["blue"]=> int(104) 
    ["alpha"]=> int(0) 
} 

相关文章:

  • PHP | imagecolorclosestalpha()函数
  • PHP | imagecolorat()函数

参考: 函数 : PHP 。 PHP