applyEffects() public method

Applies any effects in the effect queue.
public applyEffects ( )
Exemplo n.º 1
0
 /**
  * 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);
     }
 }