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