reset() 공개 메소드

Resets the image data to defaults.
public reset ( )
예제 #1
0
파일: Gd.php 프로젝트: jubinpatel/horde
 /**
  * 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
파일: Image.php 프로젝트: platolin/horde
 /**
  * Reset the image, removing all loaded views.
  *
  */
 public function reset()
 {
     $this->_image->reset();
     $this->_loaded = array();
 }
예제 #4
0
파일: Png.php 프로젝트: horde/horde
 /**
  * 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;
 }