Skip to content

Commit

Permalink
Fix a bug related to manipulators order.
Browse files Browse the repository at this point in the history
  • Loading branch information
ddinchev committed May 29, 2019
1 parent a2a0fed commit 15fc394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Glide.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 15fc394

Please sign in to comment.