コード例 #1
0
ファイル: GD.php プロジェクト: juniortux/jaws
 /**
  * Destroys image handle
  *
  * @access  public
  * @return  void
  */
 function free()
 {
     if (is_resource($this->_hImage)) {
         imagedestroy($this->_hImage);
     }
     parent::free();
 }
コード例 #2
0
ファイル: Imagick.php プロジェクト: Dulciane/jaws
 /**
  * Destroys image handle
  *
  * @access  public
  * @return  void
  */
 function free()
 {
     if (isset($this->_hImage)) {
         $this->_hImage->destroy();
     }
     parent::free();
 }