Image.php 677 Bytes
Newer Older
Antonio Ramirez committed
1 2 3 4 5 6 7 8 9 10
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\imagine;

/**
11
 * Image implements most commonly used image manipulation functions using the [Imagine library](http://imagine.readthedocs.org/).
Antonio Ramirez committed
12 13 14
 *
 * Example of use:
 *
15
 * ~~~php
Qiang Xue committed
16 17 18
 * // generate a thumbnail image
 * Image::thumbnail('@webroot/img/test-image.jpg', 120, 120)
 *     ->save(Yii::getAlias('@runtime/thumb-test-image.jpg'), ['quality' => 50]);
Antonio Ramirez committed
19 20 21
 * ~~~
 *
 * @author Antonio Ramirez <amigo.cobos@gmail.com>
22
 * @author Qiang Xue <qiang.xue@gmail.com>
Antonio Ramirez committed
23 24
 * @since 2.0
 */
25
class Image extends BaseImage
Antonio Ramirez committed
26
{
27
}