wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_tinycolor_rgb_to_rgb › WordPress Function

Since5.8.0
已弃用6.3.0
wp_tinycolor_rgb_to_rgb ( $rgb_color )
访问:
  • private
参数:
  • (array) $rgb_color RGB object.
    Required: Yes
链接:
返回:
  • (array) Rounded and converted RGB object.
定义在:
文档:

Rounds and converts values of an RGB object.

Direct port of TinyColor's function, lightly simplified to maintain consistency with TinyColor.


源码

function wp_tinycolor_rgb_to_rgb( $rgb_color ) {
	_deprecated_function( __FUNCTION__, '6.3.0' );

	return array(
		'r' => wp_tinycolor_bound01( $rgb_color['r'], 255 ) * 255,
		'g' => wp_tinycolor_bound01( $rgb_color['g'], 255 ) * 255,
		'b' => wp_tinycolor_bound01( $rgb_color['b'], 255 ) * 255,
	);
}