-
/**
- * 上傳圖片產生縮圖
- *
- * 需要GD2函式庫的支援
- *
- * 初始化時需要參數new thumbnails('需要縮略的圖片的原始位址','縮縮略圖的寬度','縮圖的高度','(可選參數)縮圖的保存路徑');
- * 如果最後一個參數不指定,那麼縮圖就默認保存在原始圖片的所在目錄裡的small資料夾裡,
- * 如果不存在small資料夾,則會自動建立small資料夾
- *
- * 初始化之後需要呼叫方法produce建立縮圖
- * $thumbnails = new thumbnails (''....);
- * $thumbnails->produce();
- *
- * 其中可以獲取原始圖片的相關信息,寬度、高度、和圖片mime
- *
- * $thumbnails->getImageWidth(); //int 圖片寬度
- * $thumbnails->getImageHeight(); // int 圖片高度
- * $thumbnails->getImageMime(); // string 圖片的圖片mime
- *
- * $thumbnails->trueSize(); //array 這是一個包含圖片等比例縮略之後的寬度和高度值的數組
- * $size = array('width'= >'','height'=>'');
- * 取得圖片等比縮略後的寬度和高度
- * $size['width']//等比縮圖的寬度
- * $size['height']//等比縮圖的高度
- *
- */
- class thumbnails{
-
- private $imgSrc; //圖片的路徑
-
- private $imgSrc; //圖片的路徑
- private $saveSrc; //圖片的儲存路徑,預設為空
- private $canvasWidth; //畫布的寬度
- private $canvasHeight; //畫布的高度
- private $im; //畫布資源
- private $dm; //複製圖片回傳的資源
-
- /**
- * 初始化類,載入相關設定
- *
- * @param $imgSrc 需要縮略的圖片的路徑
- * @param $canvasWidth 縮圖的寬度
- * @param $canvasHeight 縮縮圖略圖的高度
- */
- public function __construct($imgSrc,$canvasWidth,$canvasHeight,$saveSrc=null) {
- $this->imgSrc = $imgSrc;
- $this->canvasWidth = $canvasWidth;
- $this->canvasHeight = $canvasHeight;
- $this->saveSrc = $saveSrc = $saveSrc;
- }
-
- /**
- * 產生縮圖
- */
- public function produce()
- {
- $this->createCanvas();
- $this->judgeImage( );
- $this->copyImage();
- $this->headerImage();
- }
-
- /**
- * 取得載入圖片的資訊
- *
- * 包含長度、寬度、圖片類型
- *
- * @return array 包含圖片長度、寬度、mime的陣列
- */
- private function getImageInfo
- {
- return getimagesize($this->imgSrc);
- }
-
- /**
- * 取得圖片的長度
- *
- * @return int 圖片的寬度
- */
- public function getImageWidth()
- $imageInfo = $this->getImageInfo();
- return $imageInfo['0'];
- }
-
- /**
- * 取得圖片高度
- *
- * @return int 圖片的高度
- */
- public function getImageHeight()
- {
- $imageInfo = $this->getImageInfo();
- return $imageInfo['1'];
- }
-
- /**
- * 取得圖片的種類
- *
- * @return 圖片的mime值
- */
- public function getImageMime()
- {
- $imageInfo = $this->getImageInfo();
- return $imageInfo['mime'];
- }
-
- /***/
- private function createCanvas()
- {
- $size = $this->trueSize();
- $this->im = imagecreatetruecolor($size['width'],$size ['height']);
- }
-
- /**
- * 建立畫布
- *
- * 同時將建立的畫布資源放入屬性$this->im中
- */
- private function judgeImage()
- {
- $mime = $this->getImageMime() ;
- switch ($mime)
- {
- case 'image/png':$dm = imagecreatefrompng($this->imgSrc);
- break;
-
- case 'image/ gif':$dm = imagecreatefromgif($this->imgSrc);
- break;
-
- case 'image/jpg':$dm = imagecreatefromjpeg($this->imgSrc);
- break;
-
- case 'image/jpeg':$dm = imagecreatefromgjpeg($this->imgSrc);
- break;
- }
- $this->dm = $dm;
- }
-
- /**
- * 축소 후 이미지의 너비와 높이를 결정
- *
- * 이 너비와 높이는 캔버스의 크기로도 사용됩니다.
- *
- * @return array 같은 비율로 축소한 후의 이미지
- */
- 공개 함수 trueSize()
- {
- $proportionW = $this->getImageWidth() / $this->canvasWidth;
- $proportionH = $this->getImageHeight() / $this->canvasHeight;
-
- if( ($this->getImageWidth() < $this->canvasWidth) && ($this ->getImageHeight() < $this->canvasHeight) )
- {
- $trueSize = array('width'=>$this->getImageWidth(),'height'=>$ this->getImageHeight());
- }
- elseif($proportionW >= $proportionH)
- {
- $trueSize = array('width'=>$this->canvasWidth ,'height'=>$this->getImageHeight() / $proportionW);
- }
- else
- {
- $trueSize = array('width'=>$this-> ;getImageWidth() / $proportionH,'height'=>$this->canvasHeight);
- }
- return $trueSize;
- }
-
- /**
- * 이미지를 새 캔버스에 복사
- *
- * 이미지의 크기는 비율에 맞게 조정되며 변형되지 않습니다
- * /
- 비공개 함수 copyImage()
- {
- $size = $this->trueSize();
- imagecopyreized($this->im, $this->dm , 0 , 0 , 0 , 0 , $size['width'] , $size['height'] , $this->getImageWidth() , $this->getImageheight());
- }
-
- /**
- * 이미지 출력
- *
- * 이미지 이름은 기본적으로 원본 이미지 이름과 동일합니다.
- *
- * 경로는 현재 디렉터리 아래의 작은 디렉터리입니다. 큰 이미지
- *
- * 작은 디렉토리가 없으면 자동으로 생성됩니다
- */
- 공용 함수 headerImage()
- {
- $position = strrpos($this->imgSrc,'/');
- $imageName = substr($this ->imgSrc,($위치 1));
- if($this->saveSrc)
- {
- $imageFlode = $this->saveSrc.'/';
- }
- else
- {
- $imageFlode = substr($this->imgSrc,0,$position).'/small/';
- }
- if(!file_exists($imageFlode))
- {
- mkdir($imageFlode);
- }
- $saveSrc = $imageFlode.$imageName;
- imagejpeg($this->im,$saveSrc);
- }
- }
复代代码
|