diff --git a/app/Util/Media/Image.php b/app/Util/Media/Image.php index f9ee8342..a7d53d34 100644 --- a/app/Util/Media/Image.php +++ b/app/Util/Media/Image.php @@ -106,8 +106,8 @@ class Image { try { $img = Intervention::make($file); - $img->fit($aspect['width'], $aspect['height'], function ($constraint) { - $constraint->upsize(); + $img->resize($aspect['width'], $aspect['height'], function ($constraint) { + $constraint->aspectRatio(); }); $converted = $this->convertPngToJpeg($path, $thumbnail, $img->extension); $newPath = storage_path('app/'.$converted['path']);