업로드 이미지 썸네일 생성

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,356
17년 전 조회 1,347
17년 전 조회 2,153
17년 전 조회 1,912
17년 전 조회 2,174
17년 전 조회 2,965
17년 전 조회 3,333
17년 전 조회 3,535
17년 전 조회 3,649
17년 전 조회 1,753
17년 전 조회 1,743
17년 전 조회 2,550
17년 전 조회 2,291
17년 전 조회 2,583
17년 전 조회 3,137
17년 전 조회 3,595
17년 전 조회 2,675
17년 전 조회 1,949
17년 전 조회 3,528
17년 전 조회 3,385
17년 전 조회 3,347
17년 전 조회 4,232
17년 전 조회 2,873
17년 전 조회 2,729
17년 전 조회 2,984
17년 전 조회 3,219
17년 전 조회 2,928
17년 전 조회 1,783
17년 전 조회 2,179
17년 전 조회 1,809
17년 전 조회 2,238
17년 전 조회 2,855
17년 전 조회 9,017
17년 전 조회 3,462
17년 전 조회 4,521
17년 전 조회 2,292
17년 전 조회 3,965
17년 전 조회 1,856
17년 전 조회 1,682
17년 전 조회 2,619
17년 전 조회 1,606
17년 전 조회 1,916
17년 전 조회 1,773
17년 전 조회 2,840
17년 전 조회 1,799
17년 전 조회 1,382
17년 전 조회 1,543
17년 전 조회 3,426
17년 전 조회 2,459
17년 전 조회 2,255
17년 전 조회 1,510
17년 전 조회 2,738
17년 전 조회 1,473
17년 전 조회 1,430
17년 전 조회 1,690
17년 전 조회 3,040
17년 전 조회 2,701
17년 전 조회 2,765
17년 전 조회 1,479
17년 전 조회 1,598
17년 전 조회 3,564
17년 전 조회 3,132
17년 전 조회 4,394
17년 전 조회 2,558
17년 전 조회 2,671
17년 전 조회 1,715
17년 전 조회 2,818
17년 전 조회 2,518
17년 전 조회 3,279
17년 전 조회 2,772
17년 전 조회 1,925
17년 전 조회 2,704
17년 전 조회 1,853
17년 전 조회 1,452
17년 전 조회 2,526
17년 전 조회 3,162
17년 전 조회 4,355
17년 전 조회 3,421
17년 전 조회 1,697
17년 전 조회 1,908
17년 전 조회 2,514
17년 전 조회 1,826
17년 전 조회 2,006
17년 전 조회 2,967
17년 전 조회 2,416
17년 전 조회 2,060
17년 전 조회 4,471
17년 전 조회 3,303
17년 전 조회 1,704
17년 전 조회 3,828
17년 전 조회 3,067
17년 전 조회 2,328
17년 전 조회 1,577
17년 전 조회 2,608
17년 전 조회 2,331
17년 전 조회 2,248
17년 전 조회 2,190
17년 전 조회 1,437
17년 전 조회 2,146
17년 전 조회 3,178