업로드 이미지 썸네일 생성

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,354
17년 전 조회 1,346
17년 전 조회 2,152
17년 전 조회 1,912
17년 전 조회 2,173
17년 전 조회 2,964
17년 전 조회 3,331
17년 전 조회 3,533
17년 전 조회 3,647
17년 전 조회 1,753
17년 전 조회 1,742
17년 전 조회 2,548
17년 전 조회 2,291
17년 전 조회 2,582
17년 전 조회 3,136
17년 전 조회 3,595
17년 전 조회 2,675
17년 전 조회 1,946
17년 전 조회 3,528
17년 전 조회 3,384
17년 전 조회 3,347
17년 전 조회 4,231
17년 전 조회 2,873
17년 전 조회 2,727
17년 전 조회 2,984
17년 전 조회 3,218
17년 전 조회 2,928
17년 전 조회 1,782
17년 전 조회 2,178
17년 전 조회 1,808
17년 전 조회 2,238
17년 전 조회 2,855
17년 전 조회 9,015
17년 전 조회 3,461
17년 전 조회 4,519
17년 전 조회 2,286
17년 전 조회 3,964
17년 전 조회 1,854
17년 전 조회 1,682
17년 전 조회 2,619
17년 전 조회 1,606
17년 전 조회 1,916
17년 전 조회 1,773
17년 전 조회 2,839
17년 전 조회 1,798
17년 전 조회 1,381
17년 전 조회 1,542
17년 전 조회 3,426
17년 전 조회 2,459
17년 전 조회 2,253
17년 전 조회 1,510
17년 전 조회 2,738
17년 전 조회 1,472
17년 전 조회 1,430
17년 전 조회 1,689
17년 전 조회 3,040
17년 전 조회 2,701
17년 전 조회 2,764
17년 전 조회 1,479
17년 전 조회 1,596
17년 전 조회 3,563
17년 전 조회 3,132
17년 전 조회 4,393
17년 전 조회 2,558
17년 전 조회 2,671
17년 전 조회 1,711
17년 전 조회 2,816
17년 전 조회 2,509
17년 전 조회 3,277
17년 전 조회 2,771
17년 전 조회 1,925
17년 전 조회 2,704
17년 전 조회 1,853
17년 전 조회 1,452
17년 전 조회 2,524
17년 전 조회 3,160
17년 전 조회 4,355
17년 전 조회 3,420
17년 전 조회 1,696
17년 전 조회 1,908
17년 전 조회 2,512
17년 전 조회 1,825
17년 전 조회 2,006
17년 전 조회 2,966
17년 전 조회 2,414
17년 전 조회 2,060
17년 전 조회 4,470
17년 전 조회 3,303
17년 전 조회 1,703
17년 전 조회 3,827
17년 전 조회 3,067
17년 전 조회 2,327
17년 전 조회 1,576
17년 전 조회 2,605
17년 전 조회 2,331
17년 전 조회 2,247
17년 전 조회 2,189
17년 전 조회 1,437
17년 전 조회 2,145
17년 전 조회 3,178