Instafilter\Image::_apply_filter PHP Method

_apply_filter() public method

public _apply_filter ( $filter )
    public function _apply_filter($filter)
    {
        //give the image to the filter
        $filter->image($this);
        //apply the filter
        $filter->apply_filter();
        return $this;
    }