reset() public méthode

Resets the image data to defaults.
public reset ( )
Exemple #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;
 }
Exemple #2
0
 /**
  * Resets the image data.
  */
 public function reset()
 {
     parent::reset();
     $this->_operations = array();
     $this->_postSrcOperations = array();
     $this->clearGeometry();
 }
Exemple #3
0
 /**
  * Reset the image, removing all loaded views.
  *
  */
 public function reset()
 {
     $this->_image->reset();
     $this->_loaded = array();
 }
Exemple #4
0
 /**
  * Resets the image data to defaults.
  */
 public function reset()
 {
     parent::reset();
     $this->_img = array();
 }
Exemple #5
0
 public function reset()
 {
     parent::reset();
     $this->_imagick->clear();
     $this->_noMoreImages = false;
 }