Index: temp/trunk/data/class/SC_Image.php
===================================================================
--- temp/trunk/data/class/SC_Image.php	(revision 9090)
+++ temp/trunk/data/class/SC_Image.php	(revision 9091)
@@ -64,7 +64,10 @@
 		$zip_height = $src_h * $zip_scale;
 		
+		
+		$src_im = ImageCreateFromJPEG($file);//¸µ²èÁü
+		
 		// °µ½ÌÀè²èÁü
 		$dst_im = imagecreatetruecolor($zip_width, $zip_height);	
-		imagecopyresampled($dst_im, $file, 0, 0, 0,0, $zip_width, $zip_height, $src_w, $src_h);
+		imagecopyresampled($dst_im, $src_im, 0, 0, 0,0, $zip_width, $zip_height, $src_w, $src_h);
 
 		// ²èÁü½ÐÎÏ
