Grafika\Imagick\Filter\Brightness::__construct PHP Method

__construct() public method

Brightness constructor.
public __construct ( integer $amount )
$amount integer The amount of brightness to apply. >= -100 and <= -1 to darken. 0 for no change. >= 1 and <= 100 to brighten.
    public function __construct($amount)
    {
        $this->amount = (int) $amount;
    }