업로드 이미지 썸네일 생성

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,441
17년 전 조회 1,436
17년 전 조회 2,212
17년 전 조회 1,995
17년 전 조회 2,242
17년 전 조회 3,056
17년 전 조회 3,405
17년 전 조회 3,615
17년 전 조회 3,735
17년 전 조회 1,833
17년 전 조회 1,826
17년 전 조회 2,636
17년 전 조회 2,383
17년 전 조회 2,669
17년 전 조회 3,215
17년 전 조회 3,678
17년 전 조회 2,765
17년 전 조회 2,037
17년 전 조회 3,616
17년 전 조회 3,478
17년 전 조회 3,437
17년 전 조회 4,307
17년 전 조회 2,972
17년 전 조회 2,814
17년 전 조회 3,064
17년 전 조회 3,290
17년 전 조회 3,015
17년 전 조회 1,881
17년 전 조회 2,279
17년 전 조회 1,921
17년 전 조회 2,330
17년 전 조회 2,942
17년 전 조회 9,097
17년 전 조회 3,554
17년 전 조회 4,611
17년 전 조회 2,372
17년 전 조회 4,033
17년 전 조회 1,928
17년 전 조회 1,772
17년 전 조회 2,706
17년 전 조회 1,688
17년 전 조회 2,019
17년 전 조회 1,873
17년 전 조회 2,925
17년 전 조회 1,890
17년 전 조회 1,459
17년 전 조회 1,614
17년 전 조회 3,526
17년 전 조회 2,556
17년 전 조회 2,347
17년 전 조회 1,595
17년 전 조회 2,830
17년 전 조회 1,545
17년 전 조회 1,516
17년 전 조회 1,779
17년 전 조회 3,124
17년 전 조회 2,786
17년 전 조회 2,874
17년 전 조회 1,571
17년 전 조회 1,690
17년 전 조회 3,646
17년 전 조회 3,216
17년 전 조회 4,485
17년 전 조회 2,645
17년 전 조회 2,754
17년 전 조회 1,802
17년 전 조회 2,897
17년 전 조회 2,599
17년 전 조회 3,363
17년 전 조회 2,860
17년 전 조회 2,022
17년 전 조회 2,802
17년 전 조회 1,947
17년 전 조회 1,547
17년 전 조회 2,621
17년 전 조회 3,244
17년 전 조회 4,444
17년 전 조회 3,521
17년 전 조회 1,793
17년 전 조회 2,002
17년 전 조회 2,598
17년 전 조회 1,908
17년 전 조회 2,102
17년 전 조회 3,055
17년 전 조회 2,505
17년 전 조회 2,152
17년 전 조회 4,570
17년 전 조회 3,379
17년 전 조회 1,791
17년 전 조회 3,915
17년 전 조회 3,165
17년 전 조회 2,407
17년 전 조회 1,669
17년 전 조회 2,684
17년 전 조회 2,406
17년 전 조회 2,349
17년 전 조회 2,288
17년 전 조회 1,519
17년 전 조회 2,220
17년 전 조회 3,267