Grafika\Imagick\Filter\Contrast::__construct PHP Метод

__construct() публичный Метод

Contrast constructor.
public __construct ( integer $amount )
$amount integer The amount of contrast to apply. >= -100 and <= -1 to reduce. 0 for no change. >= 1 and <= 100 to increase.
    public function __construct($amount)
    {
        $this->amount = (int) $amount;
    }