Horde_Image_Base::applyEffects PHP Method

applyEffects() public method

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

Usage Example

Example #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);
     }
 }