laravel图像源不可读

时间:2017-07-03 13:46:34

标签: php image laravel readable

大家好,我的表格

if (Input::file()) {

    $image = Input::file('dataimage');

    $filename = $image->getClientOriginalName();

    $path = public_path('resimler/' . $filename);

    Image::make($image->getRealPath())->resize(250, 172.5)->save($path);

    $userprofile->image = $path;
    $userprofile->save();

}

但我收到了错误。

谢谢你的帮助。 我正在尝试上传图片。

0 个答案:

没有答案