From ba5cf8183edf4ce98adb1d6c3352975595acc5cd Mon Sep 17 00:00:00 2001 From: pawellewandowski Date: Fri, 21 Nov 2014 23:11:08 +0100 Subject: [PATCH] Update GD.php --- Adapter/GD.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 */