diff --git a/Adapter/GD.php b/Adapter/GD.php index b63c734..054d17d 100644 --- a/Adapter/GD.php +++ b/Adapter/GD.php @@ -117,7 +117,15 @@ public function negate() imagefilter($this->resource, IMG_FILTER_NEGATE); return $this; } - + /** + * @inheritdoc + */ + public function blur() + { + imagefilter($this->resource, IMG_FILTER_GAUSSIAN_BLUR); + return $this; + } + /** * @inheritdoc */