当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagecolorsforindex()用法及代码示例


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

用法:

array imagecolorsforindex ( $image, $index )

参数:该函数接受上述和以下描述的两个参数:


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

返回值:此函数返回一个在给定索引处包含红色,绿色,蓝色和Alpha键值的关联数组。

以下示例程序旨在说明PHP中的imagecolorsforindex()函数:

程序1:

<?php 
   
// store the image in variable. 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
   
// Calculate rgb pixel value at perticular point. 
$rgb = imagecolorat($image, 30, 25); 
   
// Assign color name and its value. 
$colors = imagecolorsforindex($image, $rgb); 
   
var_dump($colors); 
?>

输出:

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

程序2:

<?php 
   
// store the image in variable. 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/col1.png'); 
   
// index value 
$index_x = 230; 
$index_y = 120; 
  
// Calculate rgb pixel value at perticular point. 
$rgba_color = imagecolorat($image, $index_x, $index_y); 
  
// Assign color name and its value. 
$colors = imagecolorsforindex($image, $rgba_color); 
   
var_dump($colors); 
?>

输出:

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

相关文章:

参考: http://php.net/manual/en/function.imagecolorsforindex.php



相关用法


注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | imagecolorsforindex() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。