Update StoryController, optimize photo size by resizing to 9:16 aspect

pull/2741/head
Daniel Supernault 4 years ago
parent ca00f2bb97
commit e66ed9a222
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -130,6 +130,9 @@ class StoryController extends Controller
if($story->type === 'photo') {
$img = Intervention::make($path);
$img->crop($width, $height, $x, $y);
$img->resize(1080, 1920, function ($constraint) {
$constraint->aspectRatio();
});
$img->save($path, config('pixelfed.image_quality'));
}

Loading…
Cancel
Save