我搜索过,但没有找到这个问题的答案。
好吧,我正在使用laravel 5.5干预上传照片。
当我create
一个新的食谱(在我的情况下),一切正常,照片正在成功上传。
这是初始上传的代码:
$front_image = $request->file('front_image');
$frontImageName = md5(time()) . '.' . $front_image
->getClientOriginalExtension();
$locationfi = public_path('photos/front/' . $frontImageName);
Image::make($front_image)
->resize(454,340)
->insert(public_path('photos/logo.png'),'bottom-right')
->save($locationfi);
$recipe->front = $frontImageName;
所有标准的东西。
但当我尝试edit
食谱时,我得到Image source not readable
。
这是重新上传的代码:
$front_image = $request->file('front_image');
$frontImageName = md5(time()).'.'.$front_image
->getClientOriginalExtension();
$location = public_path('photos/front/'.$frontImageName );
Image::make($front_image)->resize(690,517)
->insert(public_path('photos/tk.png'),'bottom-right')
->save($location);
//update the database
$recipe->front=$imageName;
我在两种形式中使用enctype="multipart/form-data"
进行创建和更新。
在更新表单上,我还使用{{method_field('PUT'}}
。
我在这里缺少什么?感谢。
答案 0 :(得分:0)
我已经解决了这个问题。他们说,“它始终是小事”。 当我插入徽标图像时,我指的是不存在的phtoto。那就是为什么它给了我这个错误,显然。