reset() public method

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