function uploadimage($upname,$smallmark=1,$dstsw,$dstsh=0,$path_dim,$path_xim,$newname,$smallname=0,$filetype="null") { global $webaddr,$_files,$my; $phpv=str_replace('.', '', php_version); $filename=$upname; $max_file_size = 2147483648; //上傳檔案大小限制, 單位byte 2m $path_im = $path_dim; //產生大圖儲存檔案夾路徑 $path_sim = $path_xim; //縮圖儲存檔案夾路徑 $simclearly=75; $simclearlypng =$phpv>=512?7:75; //縮圖清晰度0-100,數字越大越清晰,檔案尺寸越大 $smallmark = $smallmark; //是否產生縮圖(1為加產生,其他為不); $dst_sw =$dstsw; //定義縮圖寬度,高度我採用等比例縮放,所以只要比較寬度就可以了 $uptypes=array( 'image/jpg', 'image/jpeg', 'image/png', 'image/pjpeg', 'image/gif', 'image/bmp', 'image/x-png' ); if (!is_uploaded_file($_files[$filename][tmp_name])) { dsetcookie('setok','upload1'); header("location:111cn.net/profile"); exit; } $file = $_files[$filename]; $pinfo = pathinfo($file["name"]); if ($filetype=="null") { $filetype = $pinfo['extension']; } if (!in_array(strtolower($pinfo['extension']),array("jpg","jpeg","png","gif"))) { dsetcookie('setok','upload3'); header("location:111cn.net/profile"); exit; } if($max_file_size < $file["size"]) {//檢查檔案大小 dsetcookie('setok','upload2'); header("location:111cn.net/profile"); exit; } if(!in_array($file["type"],$uptypes)) { //檢查檔案類型 dsetcookie('setok','upload3'); header("location:111cn.net/profile"); exit; } if(!file_exists($path_im)) { mkdir($path_im); } $filename = $file["tmp_name"]; $im_size = getimagesize($filename); $src_w = $im_size[0]; $src_h = $im_size[1]; $src_type = $im_size[2]; $all_path = $path_im.$newname.".".$filetype;//路徑+檔案名稱,目前以上傳時間命名 if (file_exists($all_path)) { @unlink($all_path); } if(!move_uploaded_file ($filename,$all_path)) { dsetcookie('setok','upload4'); header("location:111cn.net/profile"); exit; } $pinfo = pathinfo($all_path); $fname = $pinfo[basename]; switch($src_type) {//判斷源圖片檔案類型 case 1://gif $src_im = @imagecreatefromgif($all_path);//從源圖片檔案取得映像 break; case 2://jpg $src_im = @imagecreatefromjpeg($all_path); break; case 3://png $src_im = @imagecreatefrompng($all_path); break; //case 6: //$src_im=imagecreatefromwbmp($all_path); //break; default: dsetcookie('setok','upload3'); header("location:111cn.net/profile"); exit; } if($smallmark == 1) { if(!file_exists($path_sim)) {//檢查縮圖目錄是否存在,不存在建立 mkdir($path_sim); } if ($smallname) $newname=$smallname; $sall_path = $path_sim.$newname.".".$filetype; if (file_exists($sall_path)) { @unlink($sall_path); } if($src_w <= $dst_sw) { // 原圖尺寸 <= 縮圖尺寸 if ($dstsh==0) { $dst_sim = @imagecreatetruecolor($src_w,$src_h); //建立縮圖真彩位元影像 $sx=$sy=0; } else { $dst_sim = @imagecreatetruecolor($dstsw,$dstsh); //建立縮圖真彩位元影像 $sx=($dstsw-$src_w)/2; $sy=($dstsh-$src_h)/2; } $img = @imagecreatefrompng("images/phbg.png"); @imagecopymerge($dst_sim,$img,0,0,0,0,$dstsw,$dstsh,100); //原圖映像寫入建立真彩位元影像中 @imagecopymerge($dst_sim,$src_im,$sx,$sy,0,0,$src_w,$src_h,100); //原圖映像寫入建立真彩位元影像中 } if($src_w > $dst_sw) { // 原圖尺寸 > 縮圖尺寸 $dst_sh = $dst_sw/$src_w*$src_h; if ($dst_sh<$dstsh) { $dst_sh=$dstsh; $dst_sw=$dst_sh/$src_h*$src_w; } if ($dstsh==0) { $dst_sim = @imagecreatetruecolor($dst_sw,$dst_sh); //建立縮圖真彩位元影像(等比例縮小原圖尺寸) } else { $dst_sim = @imagecreatetruecolor($dstsw,$dstsh); //建立縮圖真彩位元影像(等比例縮小原圖尺寸) } @imagecopyresampled($dst_sim,$src_im,0,0,0,0,$dst_sw,$dst_sh,$src_w,$src_h); //原圖映像寫入建立真彩位元影像中 } switch($src_type) { case 1:@imagegif($dst_sim,$sall_path,$simclearly);//產生gif檔案,圖片清晰度0-100 break; case 2:@imagejpeg($dst_sim,$sall_path,$simclearly);//產生jpg檔案,圖片清晰度0-100 break; case 3:@imagepng($dst_sim,$sall_path,$simclearlypng);//產生png檔案,圖片清晰度0-100 break; //case 6: //imagewbmp($dst_sim,$sall_path); break; } //釋放緩衝 @imagedestroy($dst_sim); } @imagedestroy($src_im); return $newname.".".$filetype; } ?> |