Image.php 677 B

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