Index: temp/trunk/data/class/SC_UploadFile.php
===================================================================
--- temp/trunk/data/class/SC_UploadFile.php	(revision 9269)
+++ temp/trunk/data/class/SC_UploadFile.php	(revision 9271)
@@ -306,6 +306,4 @@
 		$path = $this->makeThumb($filepath, $to_w, $to_h);
 		
-		//$path = $objImage->saveResizeImage($filepath, $to_w, $to_h);
-		
 		// ¥Õ¥¡¥¤¥ëÌ¾¤À¤±ÊÖ¤¹
 		return basename($path);
Index: temp/trunk/data/lib/gdthumb.php
===================================================================
--- temp/trunk/data/lib/gdthumb.php	(revision 9270)
+++ temp/trunk/data/lib/gdthumb.php	(revision 9271)
@@ -135,5 +135,5 @@
 						imagecolortransparent ($dst_im, $transparent);
 					}
-          			imagecopyresized($dst_im, $src_im, 0, 0, 0, 0, $re_size[0], $re_size[1], $size[0], $size[1]);
+          			$imageresize($dst_im, $src_im, 0, 0, 0, 0, $re_size[0], $re_size[1], $size[0], $size[1]);
 									
 					if(function_exists("imagegif")) {
@@ -171,5 +171,4 @@
 				$src_im = imageCreateFromJpeg($path);
 				$dst_im = $imagecreate($re_size[0], $re_size[1]);
-				//imagecopyresized( $dst_im, $src_im, 0, 0, 0, 0, $re_size[0], $re_size[1], $size[0], $size[1]);
 				$imageresize( $dst_im, $src_im, 0, 0, 0, 0, $re_size[0], $re_size[1], $size[0], $size[1]);
 				
