how get the Photo size upload in laravel
$request->file('image')->getSize()
how get the Photo size upload in laravel
$request->file('image')->getSize()
how get the photo size upload in laravel
request()->validate([
'image' => 'image|mimes:jpeg,png,jpg|max:2048',
]);
how to get the size of an uploaded file in laravel
use Illuminate\Support\Facades\Storage;
$size = Storage::size('public/'.$picture->filename');
how get the size of image in laravel
$image = getimagesize($request->image);
$width = $image[0];
$height = $image[1];
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us