Answers for "image upload size limit in laravel"

PHP
1

image dimension when uploading in laravel validation

$this->validate($request, [    'image' => 'required|image|mimes:jpeg,png,jpg,gif,svg|max:2048|dimensions:width=500,height=500',]);
Posted by: Guest on April-23-2021
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

Code answers related to "image upload size limit in laravel"

Browse Popular Code Answers by Language