Image source not readable in Laravel 5.2 - Intervention Image

前端 未结 6 749
攒了一身酷
攒了一身酷 2021-02-07 18:20

I have a small problem concerning the resizing process of a given image, I am trying to submit a form containing an input type -->file<-- I was able to upload a picture witho

6条回答
  •  天涯浪人
    2021-02-07 18:57

    i just solved this problem.

    change this line:

    $file -> move('uploads', $fileName);
    

    to

    $file = $file -> move('uploads', $fileName);
    

    now $file->getRealPath() has a valid value.

    hope this works for you.

提交回复
热议问题