Die grauen Farben werden korrekt ermittelt.

This commit is contained in:
2021-03-04 12:03:23 +01:00
parent 58c0f5f717
commit f965d7d9d7
@@ -49,6 +49,15 @@ class HueSaturationValueToRedGreenBlue
protected function processConvert(): void
{
if ($this->saturation === 0.0) {
$this->red = $this->green = $this->blu = $this->value;
} else {
$this->splitColor();
}
}
protected function splitColor(): void
{
}