- function mkdirs($dirname,$mode=0777) //建立目錄(目錄, [模式])
- {
- if(!is_dir($dirname))
- {
- mkdirs($dirname,$mode); //如果目錄不存在,遞歸建立
- return mkdir($ dirname,$mode);
- }
- return true;
- }
-
- function savefile($filename,$content='') //儲存檔案(檔案, [內容])
- {
- if(function_exists(file_put_contents))
- {
- file_put_contents($filename,$content);
- }
- else fwrite($fp,$content);
- fclose($fp);
- }
- }
-
- function getsuffix($filename) //取得檔案名稱字尾
- {
- return end(explode(".",$filename));
- }
-
- function checksuffix($filename,$arr) //是否為允許類型(當前, 允許)
- {
- if(!is_array($arr))
- {
- $arr=explode(",",str_replace(" ","",$arr));
- }
- return in_array($filename,$arr) ? 1 : 0;
- }
-
- class image
- {
- var $src; //來源位址 var $newsrc; //新圖路徑(本地化後)
- var $allowtype=array(".gif",".jpg",".png",".jpeg"); //允許的圖片類型
- var $regif=0; //是否縮略GIF, 為0不處理
- var $keep=0; //是否保留來源檔案(1為保留, 0為MD5)
- var $ over=0; //是否可以覆蓋已存在的圖片,為0則不可覆蓋
- var $dir; //圖片來源目錄
- var $newdir; //處理後的目錄
-
- function __construct($olddir=null,$newdir=null)
- {
- $this->dir=$olddir ? $olddir : "./images/temp";
- $this->newdir=$this->newdir=$this->newdir=$this->newdir=$this->newdir=$ newdir ? $newdir : "./images/s";
- }
-
- function reNames($src)
- {
- $md5file=substr(md5($src),10,10 ).strrchr($src,"."); //MD5檔名後(例如:3293okoe.gif)
- $md5file=$this->w."_".$this->h."_" .$md5file; //處理後檔案名稱
- return $this->newdir."/".$md5file; //將來源圖片,MD5檔案名稱後儲存到新的目錄裡
- }
-
- function Mini($src,$w,$h,$q=80) //產生縮圖Mini(圖片位址, 寬度, 高度, 品質)
- {
- $this->src=$ src;
- $this->w=$w;
- $this->h=$h;
- if(strrchr($src,".")==".gif" && $this- >regif==0) //是否處理GIF圖
- {
- return $this->src;
- }
- if($this->keep==0) //是否保留來源文件,預設不保留
- {
- $newsrc=$this->reNames($src); //改名後的檔案位址
- }
- else //保持原名
- {
- $src=str_replace("\","/",$src);
- $newsrc=$this->newdir.strrchr($src,"/");
- }
- if(file_exists( $newsrc) && $this->over==0) //如果已存在,直接回傳位址
- {
- return $newsrc;
- }
- if(strstr($src,"http: //") && !strstr($src,$_SERVER['HTTP_HOST']))//如果是網路檔案,先儲存
- {
- $src=$this->getimg($src);
- }
- $arr=getimagesize($src); //取得圖片屬性
- $width=$arr[0];
- $height=$arr[1];
- $type= $arr[2];
- switch($type)
- {
- case 1: //1 = GIF,
- $im=imagecreatefromgif($src);
- break;
- case 2: //2 = JPG
- $im=imagecreatefromjpeg($src);
- break;
- case 3: //3 = PNG
- $im=imagecreatefrompng($src);
- break;
- default:
- return 0;
- }
-
- //處理縮圖
- $nim=imagecreatetruecolor($w,$h);
- $k1= round($h/$w,2);
- $k2=round($height/$width,2);
- if($k1 {
- $width_a=$ width;
- $height_a=round($width*$k1);
- $sw=0;
- $sh=($height-$height_a)/2;
-
- }
- else
- {
- $width_a=$height/$k1;
- $height_a=$height;
- $sw=($width-$width_a)/2;
- $sh🎜> $sh = 0;
- }
-
- // 產生圖片
- if(function_exists(imagecopyresampled))
- {
- imagecopyresampled($nim,$im,0,0,$swim,0$ sh,$w,$h,$width_a,$height_a);
- }
- else
- {
- imagecopyresized($nim,$im,0,0,$sw,$sh,$w ,$h,$width_a,$height_a);
- }
- if(!is_dir($this->newdir))
- {
- mkdir($this->newdir);
- }
- mkdir($this->newdir);
- }
-
- switch($type) //儲存圖片
- {
- case 1:
- $rs=imagegif($nim,$newsrc);
- break;
- 情況2 :
- $rs=imagejpeg($nim,$newsrc,$q);
- 中斷;
- 情況3:
- $rs=imagepng($nim,$newsrc);
- Break;
- 預設值:
- return 0;
- }
- return $newsrc; //回傳處理後路徑
- }
-
- function getimg($filename)
- {
- $md5file=$this->dir."/".substr(md5($filename) ,10,10).strrchr($filename,".");
- if(file_exists($md5file))
- {
- return $md5file;
- }
- //開始取得檔案,並回傳新路徑
- $img=file_get_contents($filename);
- if($img)
- {
- if(!is_dir($this->dir))
- {
- mkdir($this->dir);
- }
- savefile($md5file,$img);
- }
- savefile($md5file,$img);
- return $md5file;
- }
- }
-
- 函數reImg($src,$w,$h,$q) //轉換最大(檔名與結構不變)
- {
- $this->keep=1;
- return $this-> ;迷你($src,$w,$h,$q); //回傳產生的位址
- }
-
- }
-
- $image=new image();
- echo $image->reImg("images/zht.jpg", 75,75,80);
- echo "
" ;
- echo $image->reImg("images/m8920.jpg",75,75,80);
echo " "; echo $image->getimg("./ images/s/zht.jpg"); ?>
| 複製程式碼