Exemple #1
0
 /**
  * Mirrors the image.
  *
  * @param string $view The view (size) to work with.
  *
  * @throws Ansel_Exception
  */
 public function mirror($view = 'full')
 {
     $this->load($view);
     $this->_dirty = true;
     try {
         $this->_image->mirror();
     } catch (Horde_Image_Exception $e) {
         throw new Ansel_Exception($e);
     }
 }