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


PHP GmagickPixel getcolor()用法及代码示例


GmagickPixel::getcolor()函数是PHP中的一个内置函数,用于获取GmagickPixel对象描述的颜色(字符串或数组)。如果颜色设置了不透明度通道,则将其作为列表中的第四个值提供。

用法:

mixed GmagickPixel::getcolor( bool $as_array,
                  bool $normalized_array )

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


  • $as_array(可选):它指定是否获取值作为数组。其默认值为FALSE。
  • $normalized_array(可选):它指定是否获取标准化数组。其默认值为FALSE。

返回值:此函数返回字符串或颜色值数组。

异常:该函数在错误时抛出GmagickPixelException。

下面给出的程序说明了PHP中的GmagickPixel::getcolor()函数:

程序1(将颜色作为字符串获取):

<?php 
  
// Create a new GmagickPixel object 
// using __construct 
$gmagickPixel = new GmagickPixel('#ccb062'); 
  
// Get the color 
$color = $gmagickPixel->getcolor(); 
print("<pre>".print_r($color, true)."</pre>"); 
?>

输出:

rgb(52428, 45232, 25186)

程序2(通过归一化获取颜色为数组):

<?php 
  
// Create a new GmagickPixel object 
// using __construct 
$gmagickPixel = new GmagickPixel('#ccb062'); 
  
// Get the color 
$color = $gmagickPixel->getcolor(true, true); 
print("<pre>".print_r($color, true)."</pre>"); 
?>

输出:

Array
(
    [r] => 0.8
    [g] => 0.69019607843137
    [b] => 0.3843137254902
)

程序3(在不进行标准化的情况下获取颜色为数组):

<?php 
  
// Create a new GmagickPixel object 
// using __construct 
$gmagickPixel = new GmagickPixel('#ccb062'); 
  
// Get the color 
$color = $gmagickPixel->getcolor(true, false); 
print("<pre>".print_r($color, true)."</pre>"); 
?>

输出:

Array
(
    [r] => 204
    [g] => 176
    [b] => 98
)

参考: https://www.php.net/manual/en/gmagickpixel.getcolor.php



相关用法


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