Converts an HSLA array to RGBA.
Description
Direct port of colord’s hslaToRgba function.
Parameters
$hsla
arrayrequired- The HSLA array to convert.
Source
private static function colord_hsla_to_rgba( $hsla ) {
return self::colord_hsva_to_rgba( self::colord_hsla_to_hsva( $hsla ) );
}
Changelog
Version | Description |
---|---|
6.3.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.