-
-
/** - *
- *기능: 이미지 크기 조정 또는 썸네일 생성
- *반환: True/False
- *매개변수:
- * $Image 조정이 필요한 이미지(경로 포함)
- * $Dw=450 조정 시 최대 너비, 축소판 작성 시 절대 너비
- * $Dh=450 조정 시 최대 높이, 축소판 작성 시 절대 높이
- * $Type=1 1, 크기 조정 2, 축소판 생성
- */ bbs.it-home.org
- $phtypes= array('img/gif', 'img/jpg', 'img/jpeg', 'img/bmp', 'img/pjpeg', 'img/x-png')
- < ;p>function extractImg($Image,$Dw,$Dh,$Type){
- IF(!file_exists($Image)){
- return false
- }
- // 필요한 경우 생성; 썸네일, 원본 이미지를 복사하고 $Image에 다시 할당(썸네일 생성 작업)
- // Type==1인 경우 원본 이미지 파일은 복사되지 않고 원본 이미지 파일에 재생성됩니다. 크기 조정 작업)
- IF($Type!=1){
- copy($Image,str_replace(".","_x.",$Image))
- $Image =str_replace("." ,"_x.",$Image);
- }
- // 파일 유형을 가져오고 유형에 따라 다른 객체를 만듭니다.
- $ImgInfo=getimagesize($Image)
- Switch($ImgInfo) [2]){
- 사례 1:
- $Img =@imagecreatefromgif($Image);
- 중단
- 사례 2:
- $Img =@imagecreatefromjpeg ($Image); > Break;
- 사례 3:
- $Img =@imagecreatefrompng($Image);
- break
- }
- // 객체가 성공적으로 생성되지 않은 경우 files
- IF(Empty($Img)){
- // 썸네일 생성 시 오류가 발생하면 복사한 파일을 삭제해야 합니다.
- IF($Type!=1){
- unlink( $Image);
- }
- return false
- }
- // 크기 조정 작업을 수행하면
- IF($Type==1){
- $w=ImagesX($ Img); $h=ImagesY($Img);
- $width = $w;
- $height = $h
- IF($width>$Dw) $Par =$Dw/$width;
- $width=$Dw;
- $height=$height*$Par;
- IF($height>$Dh){
- $ Par=$Dh/$ 높이
- $height=$Dh;
- $width=$width*$Par
- }
- } ElseIF($height>$Dh) {
- $ Par=$Dh/$ 높이
- $height=$Dh;
- $width=$width*$Par
- IF($width>$Dw){
- $Par=$Dw/ $width; $width=$Dw;
- $height=$height*$Par;
- }
- } Else {
- $width=$width
- $height=$ 높이
- }
- $nImg =ImageCreateTrueColor($width,$height);// 새로운 트루 컬러 캔버스 만들기
- ImageCopyReSampled($nImg,$Img,0,0,0,0,$width, $height,$w ,$h);//이미지 일부 복사 및 크기 조정
- ImageJpeg($nImg,$Image);//이미지를 JPEG 형식으로 브라우저나 파일에 출력
- return true
- } Else {// 썸네일 생성 작업을 수행하면
- $h=ImagesY($Img)
- $width = $w; = $h
- $nImg =ImageCreateTrueColor($Dw,$Dh)
- IF($h/$w>$Dh/$Dw){// 높이가 더 큽니다
- $width=$Dw ;
- $height=$h*$Dw/$w;
- $IntNH=$height-$Dh
- ImageCopyReSampled($nImg, $Img, 0, -$IntNH/ 1.8, 0, 0 , $Dw, $height, $w, $h);
- } Else {// 너비 비율이 큽니다
- $height=$Dh
- $width=$w*$Dh /$h;
- $IntNW=$width-$Dw;
- ImageCopyReSampled($nImg, $Img,-$IntNW/1.8,0,0,0, $width, $Dh, $w, $h ); > }
- ImageJpeg($nImg,$Image);
- return true;
- }
- }
-
- /**
- *URL을 기준으로 서버에 있는 이미지 가져오기
- *$url서버에 있는 이미지 경로 $filename파일 이름
- */
- function GrabImage($ url,$filename="") {
- if($url=="") return false
- if($filename=="") {
- $ext=strrchr($ url,". ");
- if($ext!=".gif" && $ext!=".jpg" && $ext!=".png")
- return false;
- $filename =date(" YmdHis").$ext;
- }
- ob_start();
- readfile($url);
- $img = ob_get_contents();
- ob_end_clean();
- $size = strlen($img);
-
- $fp2=@fopen($filename, "a")
- fwrite($fp2,$img)
- fclose($fp2)
- return $filename;
- }
- ?>
-
-
-
- 코드 복사
-
-
전화 방법:
-
-
- //네트워크 이미지 경로
- $imgPath = 'http://news.xxxx.cn/images/1382088444437 .jpg';//원격 URL 주소
- $tempPath = 'aa/bbs.jpg';//이미지 경로 저장
-
- if(is_file($tempPath)){
- unlink($tempPath );
- }
-
- $bigImg=GrabImage($imgPath, $tempPath)
- compressImg($bigImg,70,70,1)
-
코드 복사
|