Laravel get image size

Code examples

2
0

how get the Photo size upload in laravel

$request->file('image')->getSize()
2
0

get image width and height in laravel

Core php :
list($width, $height, $type, $attr) = getimagesize($_FILES["gallery_image"]['tmp_name']);

With Intervention :
$upload_file = $request->file('gallery_image');
$height = Image::make($upload_file)->height();
$width = Image::make($upload_file)->width();
1
0

how get the size of image in laravel

   $image = getimagesize($request->image);
        $width = $image[0];
        $height = $image[1];
1
0

how get the photo size upload in laravel

 request()->validate([
            'image' => 'image|mimes:jpeg,png,jpg|max:2048',
        ]);

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................