업로드 이미지 썸네일 생성

function thumbnail($file, $save_filename, $max_width, $max_height){
 $src_img = ImageCreateFromJPEG($file); //JPG파일로부터 이미지를 읽어옵니다
 $img_info = getImageSize($file);//원본이미지의 정보를 얻어옵니다
 $img_width = $img_info[0];
 $img_height = $img_info[1];
 if(($img_width/$max_width) == ($img_height/$max_height)){
  $dst_width=$max_width;
  $dst_height=$max_height;
 }elseif(($img_width/$max_width) < ($img_height/$max_height)){
  $dst_width=$max_height*($img_width/$img_height);
  $dst_height=$max_height;
 }else{
  $dst_width=$max_width;
  $dst_height=$max_width*($img_height/$img_width);
 }
 $dst_img = imagecreatetruecolor($dst_width, $dst_height); //타겟이미지를 생성합니다
 ImageCopyResized($dst_img, $src_img, 0, 0, 0, 0, $dst_width, $dst_height, $img_width, $img_height);
 ImageInterlace($dst_img);
 ImageJPEG($dst_img,  $save_filename); //실제로 이미지파일을 생성합니다
 ImageDestroy($dst_img);
 ImageDestroy($src_img);
}

//사용 예문
if($_FILES['Filedata']['name']){
  $uploadDir1="../b_img/temp/"; //원본
  $uploadDir2="../b_img/$reg_date/"; //썸네일
  $uploadFile1="$uploadDir1".iconv("utf-8","euc-kr",$_FILES['Filedata']['name']); //원본경로
  $uploadFile2="$uploadDir2".iconv("utf-8","euc-kr",$_FILES['Filedata']['name']);  //썸네일경로
  //$uploadFile = "$uploadDir". basename($_FILES['Filedata']['name']);
  move_uploaded_file($_FILES['Filedata']['tmp_name'],$uploadFile1);
  chmod($uploadFile1,0707);
  chmod($uploadFile2,0707); 
  thumbnail($uploadFile1,$uploadFile2,"180","135");  
 }

[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]
|

댓글 1개

우와 대단합니다.찾던게 이거였는데... 테스트 해봐야 겠네요.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 3,427
17년 전 조회 1,419
17년 전 조회 2,195
17년 전 조회 1,973
17년 전 조회 2,226
17년 전 조회 3,037
17년 전 조회 3,386
17년 전 조회 3,597
17년 전 조회 3,713
17년 전 조회 1,814
17년 전 조회 1,812
17년 전 조회 2,621
17년 전 조회 2,360
17년 전 조회 2,657
17년 전 조회 3,207
17년 전 조회 3,663
17년 전 조회 2,752
17년 전 조회 2,021
17년 전 조회 3,604
17년 전 조회 3,470
17년 전 조회 3,426
17년 전 조회 4,301
17년 전 조회 2,957
17년 전 조회 2,799
17년 전 조회 3,050
17년 전 조회 3,278
17년 전 조회 3,006
17년 전 조회 1,865
17년 전 조회 2,269
17년 전 조회 1,915
17년 전 조회 2,318
17년 전 조회 2,926
17년 전 조회 9,080
17년 전 조회 3,543
17년 전 조회 4,600
17년 전 조회 2,356
17년 전 조회 4,017
17년 전 조회 1,911
17년 전 조회 1,761
17년 전 조회 2,696
17년 전 조회 1,679
17년 전 조회 2,001
17년 전 조회 1,856
17년 전 조회 2,913
17년 전 조회 1,872
17년 전 조회 1,445
17년 전 조회 1,602
17년 전 조회 3,508
17년 전 조회 2,538
17년 전 조회 2,332
17년 전 조회 1,582
17년 전 조회 2,812
17년 전 조회 1,528
17년 전 조회 1,507
17년 전 조회 1,771
17년 전 조회 3,113
17년 전 조회 2,767
17년 전 조회 2,857
17년 전 조회 1,558
17년 전 조회 1,680
17년 전 조회 3,633
17년 전 조회 3,205
17년 전 조회 4,473
17년 전 조회 2,633
17년 전 조회 2,734
17년 전 조회 1,781
17년 전 조회 2,874
17년 전 조회 2,580
17년 전 조회 3,343
17년 전 조회 2,845
17년 전 조회 2,009
17년 전 조회 2,785
17년 전 조회 1,931
17년 전 조회 1,529
17년 전 조회 2,604
17년 전 조회 3,230
17년 전 조회 4,430
17년 전 조회 3,501
17년 전 조회 1,776
17년 전 조회 1,987
17년 전 조회 2,588
17년 전 조회 1,893
17년 전 조회 2,091
17년 전 조회 3,039
17년 전 조회 2,490
17년 전 조회 2,135
17년 전 조회 4,546
17년 전 조회 3,360
17년 전 조회 1,770
17년 전 조회 3,901
17년 전 조회 3,153
17년 전 조회 2,391
17년 전 조회 1,645
17년 전 조회 2,674
17년 전 조회 2,396
17년 전 조회 2,326
17년 전 조회 2,269
17년 전 조회 1,503
17년 전 조회 2,199
17년 전 조회 3,260