在 Laravel 5 中集成 Intervention Image 实现对图片的创建、修改和压缩处

阅读数: 1503 2018年09月20日

Intervention Image 是一个PHP图片操作处理库,为图片创建、修改及压缩等处理提供了便捷方式。此外,还提供了服务提供者和门面以便集成到Laravel应用中。


1、安装

安装Intervention Image之前,需要确保PHP版本>=5.4并且安装了Fileinfo扩展,以及GD库(>=2.0)或者Imagick扩展(>=6.5.7)。

我们使用Composer在命令行安装最新版本的Intervention Image:

composer require intervention/image

2、集成到Laravel

前面已经提到,Intervention Image 提供了相应的服务提供者和门面以便集成到Laravel应用。

安装好Intervention Image后,打开config/app.php,注册如下服务提供者到$providers数组:

Intervention\Image\ImageServiceProvider::class

然后添加如下门面到$aliaes数组:

'Image' => Intervention\Image\Facades\Image::class

这样我们就可以在Laravel应用代码中直接使用Image了。

3、配置

默认情况下,Intervention Image使用PHP的GD库扩展处理所有图片,如果你想要切换到Imagick,你可以将配置文件拉到应用中:

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

这样对应的配置文件会被拷贝到config/image.php,这样你可以在该配置文件中修改图片处理驱动配置。

4、使用示例

Route::get('/', function(){    $img = Image::make('foo.jpg')->resize(300, 200);    return $img->response('jpg');});

更多使用方法请参考 Intervention Image 官方文档:http://image.intervention.io/

--------------------------------------

图片缓存:http://image.intervention.io/use/url

----------------------------使用例子--------------------------

/**

* @return mixed

* 安装图片缓存:http://image.intervention.io/use/url

*  1、安装:composer require intervention/imagecache

2、复制配置文件:php artisan vendor:publish

*/

public function image(){

//支持网络图片

$path = 'http://l1.51fanli.net/haitao/images/2018/04/5acc5ea82445b.jpg';

//支持本地图片

//$path = 'image/1.jpg';

//打开图片

$img = Image::make($path);

//强制设置尺寸

//$img->resize(1000, 1000);

//在裁剪出最适合的长宽比后,图像的宽度将被调整大小。

//在裁剪出最适合的长宽比后,图像的高度将被调整大小。如果没有给出高度,方法将使用与宽度相同的值。

$img->fit(800, 800);

//增加水印

//$img->insert('image/watermark.png');

//模糊效果

//$img->blur(20);

//亮度

//$img->brightness(35);

//对比度

//$img->contrast(35);

//裁剪图片

//$img->crop(100, 100, 25, 25);

//获得文件大小

//$size = $img->filesize();

//指定图像将被翻转的模式。您可以设置h为水平(默认)或v垂直翻转。

//$img->flip('v');

//写入文字

$img->text('The quick brown fox jumps over the lazy dog.', 120, 100);

// use callback to define details

//    $img->text('foo', 120, 200, function($font) {

//       $font->file('font/1.otf');

//       $font->size(24);

//       $font->color('#fdf6e3');

//       //$font->align('center');

//       //$font->valign('top');

//       $font->angle(100);

//    });

//保存到本地

$img->save('image/save/bar_'.date('YmdHis').'.jpg');

//销毁图片,释放内存

//$img->destroy();

return $img->response('png'); //输出图片流

}


参考资料
https://laravelacademy.org/post/3585.html
phpriji.cn | 网站地图 | 沪ICP备17015433号-1