From 2aa62559b73513c5b208f494e05608fada5d2819 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 7 Jul 2023 11:37:53 +0200 Subject: [PATCH] wip #6117 @0.25 --- src/Graphics/Color.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Graphics/Color.php b/src/Graphics/Color.php index 0ac57c0..d4ade5a 100644 --- a/src/Graphics/Color.php +++ b/src/Graphics/Color.php @@ -147,7 +147,7 @@ class Color } elseif ($this->_alpha == 1) { return '#' . $this->toHexRVB(); } - return 'rgba(' . self::_to255($this->_red) . ',' . self::_to255($this->_green) . ',' . self::_to255($this->_blue) . ',' . $this->_alpha . ')'; + return 'rgba(' . self::_to255($this->_red) . ', ' . self::_to255($this->_green) . ', ' . self::_to255($this->_blue) . ', ' . $this->_alpha . ')'; } public function toHexRVB() -- 2.39.5