Laravel—图片处理扩展包Intervention/image

翟善
2023-12-01

Intervention/image 是为 Laravel 定制的图片处理工具, 它提供了一套易于表达的方式来创建、编辑图片。

官方文档http://Intervention\Image\ImageServiceProviderLaravel5

1、安装扩展包

composer require intervention/image

2、生成配置文件

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

生成的配置文件位于config/image.php,配置文件只定义了图片驱动,可以是gd或者imagick,默认是gd,当然,要使用gd或者imagick需要保证你的环境安装了对应的gd或者imagick扩展

配置文件

<?php

return [

    'driver' => 'gd'

];

3、使用

//实例化Image对象,$source图片的路径
$img=Image::make($source);
//调整图片大小为(300,200)
$img->resize(300,200);
//只调整图片宽度为300,高度不变
$img->resize(300,null);
//调整图片宽度为300,高度等比例缩放
$img->resize(300,null,function($contraint){
    $contraint->aspectRatio();
    $contraint->upsize();
})
//widen(),heighten()相当于resize()等比例缩放的快捷方式
//宽度按照指定的,高度等比例缩放
$img->widen(300);
高度按照指定的,宽度等比例缩放
$img->heighten(300);
//获取图片的宽度
$img->width();
//获取图片的高度
$img->height();
//以图片的(0,0)坐标为起点,截取宽度为300,高度为200的图片区域,如果不传后面两个参数,默认起点为图片中点
$img->crop(300,200,0,0)
//保存对于图片的修改
$img->save();

其余用法请看官方文档APIhttp://image.intervention.io/

 类似资料: