我目前在 Laravel 中使用 Intervention Image 包。
我希望用户能够上传徽标。到目前为止,我有以下内容:
public function postUpdateLogo($id) {
if(Input::file())
{
$image = Input::file('logo');
$filename = time() . '.' . $image->getClientOriginalExtension();
\Image::make($image->getRealPath())
->resize(300, 300)
->save('user/'. $id . '/' . $filename);
$user->image = $filename;
$user->save();
}
}
但是我在提交时遇到的错误是:
Image.php 第 143 行中的 NotWritableException:无法将图像数据写入路径 (user/1/1439491280.png)
任何帮助将不胜感激。