From 15fc394c0738afcee3509206bc9e253c8515f17d Mon Sep 17 00:00:00 2001 From: Dimitar Dinchev Date: Wed, 29 May 2019 19:00:52 +0300 Subject: [PATCH] Fix a bug related to manipulators order. --- src/components/Glide.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Glide.php b/src/components/Glide.php index 08fe6e7..436bf87 100644 --- a/src/components/Glide.php +++ b/src/components/Glide.php @@ -258,9 +258,9 @@ public function getApi() 'driver' => extension_loaded('imagick') ? 'imagick' : 'gd' ]); $manipulators = [ - new Size($this->maxImageSize), new Orientation(), new Crop(), + new Size($this->maxImageSize), new Brightness(), new Contrast(), new Gamma(),