Kirki_Color::rgba_to_rgb PHP Méthode

rgba_to_rgb() public static méthode

Strips the alpha value from an RGBA color string.
public static rgba_to_rgb ( string $color ) : string
$color string The RGBA color string.
Résultat string The corresponding RGB string.
        public static function rgba_to_rgb($color)
        {
            $obj = ariColor::newColor($color);
            return $obj->toCSS('rgb');
        }