yiisoft / yii2-imagine
为 Yii 框架提供的 Imagine 集成
2.3.1
2022-09-04 10:06 UTC
Requires
- imagine/imagine: ^1.0
- yiisoft/yii2: ~2.0.0
Requires (Dev)
- cweagans/composer-patches: ^1.7
- phpunit/phpunit: 4.8.34
README
为 Yii 2 提供的 Imagine 扩展
此扩展增加了最常见的图像功能,同时也作为 Imagine 图像处理库的包装器,用于 Yii 框架 2.0。
有关许可证信息,请参阅 LICENSE 文件。
安装
安装此扩展的最佳方式是通过 composer。
运行以下命令之一
composer require --prefer-dist yiisoft/yii2-imagine
或添加以下内容到您的 composer.json 文件的 require
部分。
"yiisoft/yii2-imagine": "~2.2.0"
基本用法
此扩展是 Imagine 的包装器,同时也增加了最常用的图像处理方法。
以下示例显示了如何使用此扩展
use yii\imagine\Image; // frame, rotate and save an image Image::frame('path/to/image.jpg', 5, '666', 0) ->rotate(-8) ->save('path/to/destination/image.jpg', ['jpeg_quality' => 50]);