发布网友 发布时间:2022-04-06 06:21
共2个回答
懂视网 时间:2022-04-06 10:42
下面由Laravel教程栏目给大家介绍如何使用Laravel图片处理包intervention-image,希望对需要的朋友有所帮助!
最近偶然发现了Laravel可用的图片处理包intervention-image。
文档地址:http://image.intervention.io
安装起来也很简单。
composer require intervention/image
然后到config/app.php的
$providers中添加
InterventionImageImageServiceProvider::class
$aliases中添加
'Image' => InterventionImageFacadesImage::class
使用时引入Image的命名空间 use InterventionImageFacadesImage;
这样就可以使用Image来方便的处理图片了。
基本操作:
$img = Image::make('public/foo.jpg')->resize(300, 200); $img->save('public/bar.png');
save()也可以不填写路径,不填默认为覆盖原图。
intervention通常会在PHP脚本完成后会自动销毁资源。
也可以使用destroy()方法主动销毁资源,在调用方法后,图像实例不再可用。
$img = Image::make('public/foo.jpg'); $img->resize(320, 240); $img->save('public/small.jpg'); $img->destroy();
此处有一坑,save()覆盖原图时,destroy()不能正常销毁。save()为不同文件,可正常使用destroy()。
热心网友 时间:2022-04-06 07:50
Intervention Image 是一个 PHP 图像处理和操作库,它提供了一个简单的,易于表达的方式来创建、编辑图片。此包包括了易于和 Laravel 整合的 ServiceProviders 和 Facades。