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

下面给大家介绍Laravel 使用 intervention image 包上传、剪裁图片的方法,希望对需要的朋友有所帮助! 1、通过 composer 安装 composer i…

下面给大家介绍Laravel 使用 intervention image 包上传剪裁图片的方法,希望对需要的朋友有所帮助!

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

1、通过 composer 安装 composer intervention/image

2、修改 config/app.php 文件,添加 $providers 和 $aliases

'Intervention\Image\ImageServiceProvider'

'Image' => 'Intervention\Image\Facades\Image'

1、By default Intervention Image uses PHP's GD library extension to process all images. If you want to switch to Imagick, you can pull a configuration file into your application by running on of the following artisan command.

Publish configuration in Laravel 5

$ php artisan vendor:publish –provider="Intervention\Image\ImageServiceProviderLaravel5"

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

//resizinganuploadedfileImage::make(Input::file('photo'))->resize(300,200)->save('foo.jpg')

产品猿社区致力收录更多优质的商业产品,给服务商以及软件采购客户提供更多优质的软件产品,帮助开发者变现来实现多方共赢;

日常运营的过程中我们难免会遇到各种版权纠纷等问题,如果您在社区内发现有您的产品未经您授权而被用户提供下载或使用,您可按照我们投诉流程处理,点我投诉

本文来自用户发布投稿,不代表产品猿立场 ;若对此文有疑问或内容有严重错误,可联系平台客服反馈;

部分产品是用户投稿,可能本文没有提供官方下下载地址或教程,若您看到的内容没有下载入口,您可以在我们产品园商城搜索看开发者是否有发布商品;若您是开发者,也诚邀您入驻商城平台发布的产品,地址:点我进入

如若转载,请注明出处:https://www.chanpinyuan.cn/42849.html;
(0)
上一篇 2023年5月13日 下午4:16
下一篇 2023年5月13日 下午4:16

相关推荐

发表回复

登录后才能评论
分享本页
返回顶部