업로드 이미지 썸네일 생성

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,304
17년 전 조회 1,296
17년 전 조회 2,113
17년 전 조회 1,868
17년 전 조회 2,125
17년 전 조회 2,931
17년 전 조회 3,290
17년 전 조회 3,492
17년 전 조회 3,610
17년 전 조회 1,703
17년 전 조회 1,699
17년 전 조회 2,507
17년 전 조회 2,255
17년 전 조회 2,543
17년 전 조회 3,087
17년 전 조회 3,569
17년 전 조회 2,641
17년 전 조회 1,916
17년 전 조회 3,501
17년 전 조회 3,343
17년 전 조회 3,312
17년 전 조회 4,194
17년 전 조회 2,831
17년 전 조회 2,697
17년 전 조회 2,944
17년 전 조회 3,184
17년 전 조회 2,895
17년 전 조회 1,737
17년 전 조회 2,144
17년 전 조회 1,737
17년 전 조회 2,199
17년 전 조회 2,820
17년 전 조회 8,979
17년 전 조회 3,421
17년 전 조회 4,491
17년 전 조회 2,251
17년 전 조회 3,923
17년 전 조회 1,817
17년 전 조회 1,643
17년 전 조회 2,578
17년 전 조회 1,570
17년 전 조회 1,878
17년 전 조회 1,733
17년 전 조회 2,801
17년 전 조회 1,754
17년 전 조회 1,344
17년 전 조회 1,497
17년 전 조회 3,391
17년 전 조회 2,424
17년 전 조회 2,216
17년 전 조회 1,474
17년 전 조회 2,697
17년 전 조회 1,428
17년 전 조회 1,393
17년 전 조회 1,645
17년 전 조회 3,008
17년 전 조회 2,664
17년 전 조회 2,718
17년 전 조회 1,447
17년 전 조회 1,560
17년 전 조회 3,519
17년 전 조회 3,091
17년 전 조회 4,356
17년 전 조회 2,528
17년 전 조회 2,618
17년 전 조회 1,671
17년 전 조회 2,785
17년 전 조회 2,466
17년 전 조회 3,239
17년 전 조회 2,737
17년 전 조회 1,885
17년 전 조회 2,670
17년 전 조회 1,821
17년 전 조회 1,412
17년 전 조회 2,479
17년 전 조회 3,117
17년 전 조회 4,319
17년 전 조회 3,390
17년 전 조회 1,651
17년 전 조회 1,885
17년 전 조회 2,483
17년 전 조회 1,794
17년 전 조회 1,968
17년 전 조회 2,935
17년 전 조회 2,386
17년 전 조회 2,019
17년 전 조회 4,433
17년 전 조회 3,277
17년 전 조회 1,665
17년 전 조회 3,796
17년 전 조회 3,033
17년 전 조회 2,296
17년 전 조회 1,533
17년 전 조회 2,558
17년 전 조회 2,301
17년 전 조회 2,212
17년 전 조회 2,155
17년 전 조회 1,403
17년 전 조회 2,110
17년 전 조회 3,135