Spatie\Browsershot\Browsershot::setBackgroundColor PHP Method

setBackgroundColor() public method

Set the background color.
public setBackgroundColor ( string $backgroundColor )
$backgroundColor string
    public function setBackgroundColor($backgroundColor)
    {
        if (!strlen($backgroundColor) > 0) {
            throw new Exception('No background color specified');
        }
        $this->backgroundColor = $backgroundColor;
        return $this;
    }