yiisoft/yii2-imagine

为 Yii 框架提供的 Imagine 集成

安装数 4,183,959

依赖关系: 385

建议者: 11

安全性: 0

星标: 289

关注者: 43

分支: 94

开放问题: 6

类型:yii2-extension

2.3.1 2022-09-04 10:06 UTC

This package is auto-updated.

Last update: 2024-08-27 11:56:39 UTC


README

为 Yii 2 提供的 Imagine 扩展


此扩展增加了最常见的图像功能,同时也作为 Imagine 图像处理库的包装器,用于 Yii 框架 2.0

有关许可证信息,请参阅 LICENSE 文件。

Latest Stable Version Total Downloads Build Status

安装

安装此扩展的最佳方式是通过 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]);