업로드 이미지 썸네일 생성

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개

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

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
17년 전 조회 3,276
17년 전 조회 1,266
17년 전 조회 2,080
17년 전 조회 1,842
17년 전 조회 2,089
17년 전 조회 2,903
17년 전 조회 3,265
17년 전 조회 3,468
17년 전 조회 3,581
17년 전 조회 1,676
17년 전 조회 1,675
17년 전 조회 2,474
17년 전 조회 2,226
17년 전 조회 2,518
17년 전 조회 3,057
17년 전 조회 3,538
17년 전 조회 2,619
17년 전 조회 1,893
17년 전 조회 3,470
17년 전 조회 3,317
17년 전 조회 3,281
17년 전 조회 4,164
17년 전 조회 2,801
17년 전 조회 2,665
17년 전 조회 2,920
17년 전 조회 3,153
17년 전 조회 2,864
17년 전 조회 1,704
17년 전 조회 2,116
17년 전 조회 1,715
17년 전 조회 2,173
17년 전 조회 2,786
17년 전 조회 8,953
17년 전 조회 3,391
17년 전 조회 4,458
17년 전 조회 2,226
17년 전 조회 3,896
17년 전 조회 1,792
17년 전 조회 1,615
17년 전 조회 2,553
17년 전 조회 1,549
17년 전 조회 1,852
17년 전 조회 1,705
17년 전 조회 2,771
17년 전 조회 1,734
17년 전 조회 1,328
17년 전 조회 1,478
17년 전 조회 3,362
17년 전 조회 2,403
17년 전 조회 2,196
17년 전 조회 1,446
17년 전 조회 2,668
17년 전 조회 1,407
17년 전 조회 1,360
17년 전 조회 1,617
17년 전 조회 2,982
17년 전 조회 2,639
17년 전 조회 2,698
17년 전 조회 1,421
17년 전 조회 1,538
17년 전 조회 3,493
17년 전 조회 3,071
17년 전 조회 4,331
17년 전 조회 2,510
17년 전 조회 2,596
17년 전 조회 1,652
17년 전 조회 2,761
17년 전 조회 2,444
17년 전 조회 3,217
17년 전 조회 2,710
17년 전 조회 1,866
17년 전 조회 2,651
17년 전 조회 1,799
17년 전 조회 1,391
17년 전 조회 2,456
17년 전 조회 3,094
17년 전 조회 4,294
17년 전 조회 3,370
17년 전 조회 1,631
17년 전 조회 1,865
17년 전 조회 2,463
17년 전 조회 1,770
17년 전 조회 1,944
17년 전 조회 2,915
17년 전 조회 2,355
17년 전 조회 2,001
17년 전 조회 4,405
17년 전 조회 3,249
17년 전 조회 1,639
17년 전 조회 3,768
17년 전 조회 3,007
17년 전 조회 2,280
17년 전 조회 1,507
17년 전 조회 2,539
17년 전 조회 2,271
17년 전 조회 2,189
17년 전 조회 2,130
17년 전 조회 1,384
17년 전 조회 2,090
17년 전 조회 3,117