Horde_Image_Base::applyEffects PHP 메소드

applyEffects() 공개 메소드

Applies any effects in the effect queue.
public applyEffects ( )
    public function applyEffects()
    {
        $this->raw();
    }

Usage Example

예제 #1
0
파일: Image.php 프로젝트: platolin/horde
 /**
  * Apply any pending effects to the underlaying Horde_Image
  *
  * @throws Ansel_Exception
  */
 public function applyEffects()
 {
     try {
         $this->_image->applyEffects();
     } catch (Horde_Image_Exception $e) {
         throw new Ansel_Exception($e);
     }
 }