oubo 4fff8024d0 v3.6.0 2025-03-19 4a847691104f309abc583abea5c76afb217c1f5d hai 6 meses
..
src 4fff8024d0 v3.6.0 2025-03-19 4a847691104f309abc583abea5c76afb217c1f5d hai 4 meses
CHANGELOG.md 4fff8024d0 v3.6.0 2025-03-19 4a847691104f309abc583abea5c76afb217c1f5d hai 4 meses
LICENSE.md 4fff8024d0 v3.6.0 2025-03-19 4a847691104f309abc583abea5c76afb217c1f5d hai 4 meses
Makefile 4fff8024d0 v3.6.0 2025-03-19 4a847691104f309abc583abea5c76afb217c1f5d hai 4 meses
README.md 4fff8024d0 v3.6.0 2025-03-19 4a847691104f309abc583abea5c76afb217c1f5d hai 4 meses
composer.json 4fff8024d0 v3.6.0 2025-03-19 4a847691104f309abc583abea5c76afb217c1f5d hai 4 meses

README.md

Imagine Extension for Yii 2


This extension adds most common image functions and also acts as a wrapper to Imagine image manipulation library for Yii framework 2.0.

For license information check the LICENSE-file.

Latest Stable Version Total Downloads Build Status

Installation

The preferred way to install this extension is through composer.

Either run

composer require --prefer-dist yiisoft/yii2-imagine

or add

"yiisoft/yii2-imagine": "~2.2.0"

to the require section of your composer.json.

Basic Usage

This extension is a wrapper to the Imagine and also adds the most commonly used image manipulation methods.

The following example shows how to use this extension:

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]);