Example #1
0
 /**
  * Reset the iterator to the first image in the set.
  *
  * @return void
  * @throws Ansel_Exception
  */
 public function rewind()
 {
     if (empty($this->_loaded['full'])) {
         $this->load();
     }
     try {
         $this->_image->rewind();
     } catch (Horde_Image_Exception $e) {
         throw new Ansel_Exception($e);
     }
 }