干预/图像上传错误 {{ 图像源不可读 }}

我正在尝试在 Laravel 5.1 中添加个人资料图片上传。我使用了软件包,但当我尝试上传图像时,我收到此错误:Intervention/Image

不可读抽象解码器中的异常.php行 302:图像源不可读

这是我的照片控制器:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Image;
use Input;
use App\Http\Requests;
use App\Http\Controllers\Controller;

class PhotoController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index() {}

    /**
     * Show the form for creating a new resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function create() {}

    /**
     * Store a newly created resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function store(Request $request)
    {
        $img = Image::make($request->file('photo')); 
        $img->save('image.png');  
    }

    /**
     * Display the specified resource.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function show($id) {}

    /**
     * Show the form for editing the specified resource.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function edit($id) {}

    /**
     * Update the specified resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function update(Request $request, $id) {}

    /**
     * Remove the specified resource from storage.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function destroy($id) {}
}

这是我的html表单:

<header>
    <div class="student_profile_sub_header w100">
        <div class="container ccenter">
            <div class="student_profile_name">
                <h4>{{$student->name}} {{$student->surname}}</h4>
            </div>
            <div class="student_profile_image">
                <img src="{{asset('assets/profile_image.png')}}">
            </div>

            <form method="POST" action="../student/profile/imageupload">
                {!! csrf_field() !!}
                <input type="file" name="photo">
                <input type="submit" value="Upload Image" name="submit">
                @foreach($errors->all() as $error)
                    <li>{{ $error }}</li>
                @endforeach
            </form>
        </div>
    </div>
</header>

答案 1

在表单标记中添加以下参数:

enctype="multipart/form-data"

并为此进行更改:

$img = Image::make($request->file('photo')->getRealPath());

答案 2

这不是为了回答OP的问题,而是为了回答其他人的问题,他们在这里用不同的背景回答同样的问题。

如果您使用的是文件系统方法,那么您实际上是在从范围上传文件。如果是这样,您将需要运行以下命令:storeAs()/storage/app/public//public/

php artisan storage:link

此命令将创建指向目录下目录的快捷方式链接,并且一切应该可以正常工作。/storage/public


推荐