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
相关用法
- PHP ImagickPixel getColor()用法及代码示例
- PHP GmagickPixel setcolorvalue()用法及代码示例
- PHP GmagickPixel getcolorcount()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP GmagickPixel __construct()用法及代码示例
- PHP GmagickPixel getcolorvalue()用法及代码示例
- p5.js nfs()用法及代码示例
- p5.js nf()用法及代码示例
- PHP exp()用法及代码示例
- p5.js nfc()用法及代码示例
- p5.js nfp()用法及代码示例
- d3.js d3.map.set()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | GmagickPixel getcolor() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。