Pimcore\Image\Adapter\GD::grayscale PHP Method

grayscale() public method

public grayscale ( ) : self
return self
    public function grayscale()
    {
        $this->preModify();
        imagefilter($this->resource, IMG_FILTER_GRAYSCALE);
        $this->postModify();
        return $this;
    }