当前位置: 首页>>代码示例>>PHP>>正文


PHP wc_rgb_from_hex函数代码示例

本文整理汇总了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;
 }
开发者ID:seoduda,项目名称:Patua,代码行数:24,代码来源:ec-woo-back-compat-functions.php

示例2: woocommerce_rgb_from_hex

 /**
  * @deprecated
  */
 function woocommerce_rgb_from_hex($color)
 {
     return wc_rgb_from_hex($color);
 }
开发者ID:nayemDevs,项目名称:woocommerce,代码行数:7,代码来源:wc-deprecated-functions.php

示例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'));
 }
开发者ID:jimlove7273,项目名称:woocommerce,代码行数:11,代码来源:functions.php


注:本文中的wc_rgb_from_hex函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。