-
- /**
- * 설명 압축 이미지
- * @param sting $imgsrc 이미지 경로
- * @param string $imgdst 압축 저장 경로
- */
- 함수 image_png_size_add($imgsrc,$imgdst){
- list($width ,$height,$type)=getimagesize($imgsrc);
- $new_width = ($width>600?600:$width)*0.9;
- $new_height =($height>600?600:$height)*0.9;
- 스위치($type){
- 사례 1:
- $giftype=check_gifgraphic($imgsrc);
- if($giftype){
- header('Content-Type:image/gif');
- $image_wp=imagecreatetruecolor($new_width, $new_height);
- $image = imagecreatefromgif($imgsrc);
- imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
- imagejpeg($image_wp, $imgdst,75);
- imagedestroy($image_wp);
- }
- 휴식;
- 사례 2:
- header('Content-Type:image/jpeg');
- $image_wp=imagecreatetruecolor($new_width, $new_height);
- $image = imagecreatefromjpeg($imgsrc);
- imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
- imagejpeg($image_wp, $imgdst,75);
- imagedestroy($image_wp);
- 휴식;
- 사례 3:
- header('Content-Type:image/png');
- $image_wp=imagecreatetruecolor($new_width, $new_height);
- $image = imagecreatefrompng($imgsrc);
- imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
- imagejpeg($image_wp, $imgdst,75);
- imagedestroy($image_wp);
- 휴식;
- } // bbs.it-home.org
- }
- /**
- * 설명에 따라 gif 애니메이션인지 여부가 결정됩니다.
- * @param sting $image_file 이미지 경로
- * @return boolean t yes f no
- */
- function check_gifgraphic($image_file){
- $fp = fopen($image_file,' rb');
- $image_head = fread($fp,1024);
- fclose($fp);
- return preg_match("/".chr(0x21).chr(0xff).chr(0x0b).'NETSCAPE2.0'."/",$image_head)?false:true;
- }
- ?>
复代码
예 2:
-
- /*
- 기능: 이미지 크기 조정 또는 썸네일 생성
- 반환: True/False
- 매개변수 :
- $Image 조정해야 할 이미지(경로 포함)
- $Dw=450 조정 시 최대 너비, 썸네일링 시 절대 너비
- $Dh=450 절대 조정 시 최대 높이. 썸네일 시 너비 Height
- $Type=1 1, 크기 조정 2, 썸네일 생성
- $path='img/' //Path
- $phtypes=array(
- 'img/gif' ,
- 'img/jpg',
- 'img/jpeg',
- 'img/bmp',
- 'img/pjpeg',
- 'img/x-png'
- );
- 함수 Img($Image,$Dw=450,$Dh=450,$Type=1){
- IF(!File_Exists($Image)){
- False 반환;
- }
- //썸네일을 생성해야 하는 경우 원본 이미지를 복사하여 $Image에 다시 할당하세요.
- 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);
- 중단;
- 사례 3:
- $Img = @ImageCreateFromPNG($Image);
- 중단;
- }
- //오브젝트가 성공적으로 생성되지 않으면 이미지가 아닌 파일이라는 의미입니다.
- 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;
- $height=$Dh;
- $width=$width*$Par;
- }
- } ElseIF($height>$Dh) {
- $Par=$Dh/$height;
- $height=$Dh;
- $width=$width*$Par;
- IF($width> $Dw){
- $ Par=$Dw/$width;
- $width=$Dw;
- $height=$height*$Par;
- }
- }Else{
- $width=$width;
- $height=$height;
- }
- $nImg = ImageCreateTrueColor($width,$height); //새로운 트루 컬러 캔버스 생성
- ImageCopyReSampled($nImg, $Img,0,0,0, 0,$width,$height,$w,$h); //이미지 복사 부분을 리샘플링하고 크기를 조정합니다.
- ImageJpeg($nImg,$Image); 이미지를 JPEG 형식의 브라우저나 파일로 전송
- Return True;
- //썸네일 생성 작업이 수행되면
- }Else{
- $w=ImagesX($Img);
- $ h=ImagesY($Img);
- $width = $w;
- $height = $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);
- True 반환;
- }
- }
- ?>
- < ;html>
- 업로드가 허용되는 파일 형식은 다음과 같습니다:=implode(', ',$phtypes)?>
- < ;?php
- if($_SERVER['REQUEST_METHOD' ]=='POST'){
- if (!is_uploaded_file($_FILES["photo"][tmp_name])){
- echo "사진 존재하지 않습니다.";
- exit();
- }
- if(!is_dir('img')){//경로가 존재하지 않으면 경로를 생성하세요.
- mkdir('img') ;
- }
- $upfile=$_FILES["photo"];
- $pinfo=pathinfo($upfile["name"]);
- $name=$pinfo['basename']; //파일 이름
- $tmp_name=$upfile["tmp_name"];
- $file_type=$pinfo['extension'];//파일 형식 가져오기
- $showphpath=$path.$name;
-
- if(in_array($upfile["type"],$phtypes )){
- echo "파일 형식이 일치하지 않습니다! ";
- exit();
- }
- if(move_uploaded_file($tmp_name,$path.$name)){
- echo "성공했습니다! ";
- Img($showphpath,100,800,2);
- }
- echo "";
- }
- ? >
|