wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_tinycolor_rgb_to_rgb › WordPress Function

Seit5.8.0
Veraltet6.3.0
wp_tinycolor_rgb_to_rgb ( $rgb_color )
Zugriff:
  • private
Parameter:
  • (array) $rgb_color RGB object.
    Erforderlich: Ja
Links:
Gibt zurück:
  • (array) Rounded and converted RGB object.
Definiert in:
Codex:

Rounds and converts values of an RGB object.

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


Quellcode

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,
	);
}