Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yiisoft/yii2-imagine
Yii 2 imagine extension
https://github.com/yiisoft/yii2-imagine
hacktoberfest image images imagine thumbnails yii yii2
Last synced: about 1 month ago
JSON representation
Yii 2 imagine extension
- Host: GitHub
- URL: https://github.com/yiisoft/yii2-imagine
- Owner: yiisoft
- License: bsd-3-clause
- Created: 2014-01-01T19:03:46.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-09-29T16:09:49.000Z (about 1 year ago)
- Last Synced: 2024-04-15T03:02:40.243Z (7 months ago)
- Topics: hacktoberfest, image, images, imagine, thumbnails, yii, yii2
- Language: PHP
- Homepage: http://www.yiiframework.com
- Size: 229 KB
- Stars: 289
- Watchers: 43
- Forks: 95
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
- awesome-yii2 - yii2-imagine
README
Imagine Extension for Yii 2
This extension adds most common image functions and also acts as a wrapper to [Imagine](https://imagine.readthedocs.org/)
image manipulation library for [Yii framework 2.0](https://www.yiiframework.com).For license information check the [LICENSE](LICENSE.md)-file.
[![Latest Stable Version](https://poser.pugx.org/yiisoft/yii2-imagine/v/stable.png)](https://packagist.org/packages/yiisoft/yii2-imagine)
[![Total Downloads](https://poser.pugx.org/yiisoft/yii2-imagine/downloads.png)](https://packagist.org/packages/yiisoft/yii2-imagine)
[![Build Status](https://github.com/yiisoft/yii2-imagine/workflows/build/badge.svg)](https://github.com/yiisoft/yii2-imagine/actions)Installation
------------The preferred way to install this extension is through [composer](https://getcomposer.org/download/).
Either run
```
composer require --prefer-dist yiisoft/yii2-imagine
```or add
```json
"yiisoft/yii2-imagine": "~2.2.0"
```to the `require` section of your composer.json.
Basic Usage
-----------This extension is a wrapper to the [Imagine](https://imagine.readthedocs.org/) and also adds the most commonly used
image manipulation methods.The following example shows how to use this extension:
```php
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]);
```