//파라미터(원본이미지, 바뀔이미지, 화질 (0 ~100) , 사이즈 width, height) //파일 업로드 완료됐다라는 가정하에 진행 (move_uploaded_file) $source_img= $file_path."/".$file_nm1; //업로드 된 이미지 $destination_img = $file_path."/"."64_".$file_nm1; //앞에 64_ 를 붙히고 저장 compress($source_img, $destination_img , 90, 64,64); // 파일 사이즈 및 용량 변경 function compress($file, $destination, $quality, $w, $h) { $info = getimagesize($file); $width = $info[0]; $..