本文整理汇总了PHP中wc_rgb_from_hex函数的典型用法代码示例。如果您正苦于以下问题:PHP wc_rgb_from_hex函数的具体用法?PHP wc_rgb_from_hex怎么用?PHP wc_rgb_from_hex使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wc_rgb_from_hex函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: wc_hex_lighter
/**
* Hex darker/lighter/contrast functions for colours
*
* @param mixed $color
* @param int $factor (default: 30)
* @return string
*/
function wc_hex_lighter($color, $factor = 30)
{
$base = wc_rgb_from_hex($color);
$color = '#';
foreach ($base as $k => $v) {
$amount = 255 - $v;
$amount = $amount / 100;
$amount = round($amount * $factor);
$new_decimal = $v + $amount;
$new_hex_component = dechex($new_decimal);
if (strlen($new_hex_component) < 2) {
$new_hex_component = "0" . $new_hex_component;
}
$color .= $new_hex_component;
}
return $color;
}
示例2: woocommerce_rgb_from_hex
/**
* @deprecated
*/
function woocommerce_rgb_from_hex($color)
{
return wc_rgb_from_hex($color);
}
示例3: test_wc_rgb_from_hex
/**
* Test wc_rgb_from_hex().
*
* @since 2.2
*/
public function test_wc_rgb_from_hex()
{
$rgb = array('R' => 0, 'G' => 93, 'B' => 171);
$this->assertEquals($rgb, wc_rgb_from_hex('005dab'));
$this->assertEquals($rgb, wc_rgb_from_hex('#005dab'));
}