setRed($this->decodeColorValue($this->getNextByte())); $color->setGreen($this->decodeColorValue($this->getNextByte())); $color->setBlue($this->decodeColorValue($this->getNextByte())); return $color; } /** * Decode red value from source * * @return int */ protected function decodeColorValue(string $byte): int { return unpack('C', $byte)[1]; } }