reset() публичный Метод

Resets the image data to defaults.
public reset ( )
Пример #1
0
 /**
  * Reset the image data.
  */
 public function reset()
 {
     parent::reset();
     if (is_resource($this->_im)) {
         return $this->call('imageDestroy', array($this->_im));
     }
     return true;
 }
Пример #2
0
Файл: Im.php Проект: horde/horde
 /**
  * Resets the image data.
  */
 public function reset()
 {
     parent::reset();
     $this->_operations = array();
     $this->_postSrcOperations = array();
     $this->clearGeometry();
 }
Пример #3
0
 /**
  * Reset the image, removing all loaded views.
  *
  */
 public function reset()
 {
     $this->_image->reset();
     $this->_loaded = array();
 }
Пример #4
0
 /**
  * Resets the image data to defaults.
  */
 public function reset()
 {
     parent::reset();
     $this->_img = array();
 }
Пример #5
0
 public function reset()
 {
     parent::reset();
     $this->_imagick->clear();
     $this->_noMoreImages = false;
 }