Answers for "how get the photo size upload in laravel"

PHP
2

how get the Photo size upload in laravel

$request->file('image')->getSize()
Posted by: Guest on February-03-2021
1

how get the photo size upload in laravel

request()->validate([
            'image' => 'image|mimes:jpeg,png,jpg|max:2048',
        ]);
Posted by: Guest on February-03-2021
0

how to get the size of an uploaded file in laravel

use Illuminate\Support\Facades\Storage;

$size = Storage::size('public/'.$picture->filename');
Posted by: Guest on December-22-2020
0

how get the size of image in laravel

$image = getimagesize($request->image);
        $width = $image[0];
        $height = $image[1];
Posted by: Guest on February-06-2021

Browse Popular Code Answers by Language