Вход Регистрация
Файл: protected/extensions/image/CImageComponent.php
Строк: 40
<?php

Yii
::import('application.extensions.image.Image');

/**
 * Description of CImageComponent
 *
 * @author Administrator
 */
class CImageComponent extends CApplicationComponent
{
    
/**
     * Drivers available:
     *  GD - The default driver, requires GD2 version >= 2.0.34 (Debian / Ubuntu users note: Some functions, eg. sharpen may not be available)
     *  ImageMagick - Windows users must specify a path to the binary. Unix versions will attempt to auto-locate.
     * @var string
     */
    
public $driver 'GD';

    
/**
     * ImageMagick driver params
     * @var array
     */
    
public $params = array();

    public function 
init()
    {
        
parent::init();
        if(
$this->driver != 'GD' && $this->driver != 'ImageMagick'){
            throw new 
CException('driver must be GD or ImageMagick');
        }
    }

    public function 
load($image)
    {
        
$config = array(
            
'driver'=>$this->driver,
            
'params'=>$this->params,
        );

        return new 
Image($image$config);
    }
}
?>
Онлайн: 2
Реклама