Exemplo n.º 1
0
 /**
  * Advance the iterator
  *
  * @return mixed Ansel_Image or false if not valid()
  */
 public function next()
 {
     if (empty($this->_loaded['full'])) {
         $this->load();
     }
     if ($next = $this->_image->next()) {
         return $this->_buildImageObject($next);
     }
     return false;
 }