Skip to content

Commit

Permalink
Merge pull request #30 from ddinchev/master
Browse files Browse the repository at this point in the history
Fix a bug related to manipulators order.
  • Loading branch information
Yevhen Terentiev authored Aug 12, 2019
2 parents a2a0fed + 15fc394 commit 7393e87
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 7393e87

Please sign in to comment.