Blame view

vendor/yiisoft/yii2-imagine/Image.php 677 Bytes
f7ab7644   Mihail   after merge with ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  <?php
  /**
   * @link http://www.yiiframework.com/
   * @copyright Copyright (c) 2008 Yii Software LLC
   * @license http://www.yiiframework.com/license/
   */
  
  namespace yii\imagine;
  
  /**
   * Image implements most commonly used image manipulation functions using the [Imagine library](http://imagine.readthedocs.org/).
   *
   * Example of use:
   *
   * ~~~php
   * // generate a thumbnail image
   * Image::thumbnail('@webroot/img/test-image.jpg', 120, 120)
   *     ->save(Yii::getAlias('@runtime/thumb-test-image.jpg'), ['quality' => 50]);
   * ~~~
   *
   * @author Antonio Ramirez <amigo.cobos@gmail.com>
   * @author Qiang Xue <qiang.xue@gmail.com>
   * @since 2.0
   */
  class Image extends BaseImage
  {
  }