you can wrap your code with three backticks
Nov 9, 2017
6
Level 3
Intervention / Image Upload Error Image source not readable
Hii, I am new to laravel and I am facing a problem when uploading an image. I am already using " enctype="multipart/form-data " in the form. I have saved an image and want to resize, but showing error Image source not readable. I am using Laravel 5.4. This is what I am doing in Controller
$image = $request->file('employee_image');
$salt1 = bin2hex(openssl_random_pseudo_bytes(22));
$getimageName = $salt1.'.'.$image->getClientOriginalExtension();
$destinationPath = public_path('employeeimages');
$image->move($destinationPath, $getimageName);
// open an image file
$img = Image::make($request->file('employee_image')->getRealPath());
// now you are able to resize the instance
$img->resize(128, 128);
$img->save('employeeimages'.$getimageName);
Level 24
2 likes
Please or to participate in this conversation.