匠吉游戏
您的当前位置:首页Laravel使用intervention image包上传、剪裁图片

Laravel使用intervention image包上传、剪裁图片

来源:匠吉游戏


Handling image uploads in Laravel

In a Laravel application it is also possible to pass an uploaded file directly to the make method.

Creating Image from File Upload in Laravel

// resizing an uploaded file
Image::make(Input::file('photo'))->resize(300, 200)->save('foo.jpg')
显示全文