-
-
/**
- * 圖片相似度比較
- *
- * @version $Id: ImageHash.php 4429 2012-04-17 13:20:31Z jax $ * @authorjax.hu
- www🎜> www .osxue.com
- *//Sample_1
- *$aHash = ImageHash::hashImageFile (' wsz.11.jpg');
- *$bHash = ImageHash::hashImageFile('wsz.12.jpg');
- *var_dump(ImageHash::isHashSimilar($aHash, $bHash));
- *
- *//Sample_2
- *var_dump(ImageHash::isImageFileSimilar('wsz.11.jpg', 'wsz.12.jpg'));
- *代碼>;
- */
class ImageHash {
- /**取樣倍率 1~10
- * @access public
- * @staticvar int
- **/
- public static $rate = 2;
/ **相似度允許值 0~64
- * @access public
- * @staticvar int
- **/
- public static $similarity = 80;
/**圖片類型對應的開啟函數
- * @access private
- * @staticvar string
- **/
- private static $_createFunc = array(
- IMAGETY >'imageCreateFromGIF',
- IMAGETYPE_JPEG=>'imageCreateFromJPEG',
- IMAGETYPE_PNG =>'imageCreateFromPNG', IMAGETYPE_XBM = >'imageCreateFromXBM',
- );
;/**從檔案建立圖片
- * @param string $filePath 檔案位址路徑
- * @return resource 當成功開啟圖片則傳遞圖片 resource ID,失敗則是 false
- **/
- public static function createImage($filePath){
- if(!file_exists($file_exists($文件路徑)){ 返回false; } }
/*判斷檔案類型是否可以開啟*/
- $type = exif_imagetype($filePath);
- if(!array_key_exists($type,self::$_createFunc ) )){ 返回 false; }
$func = self::$_createFunc[$type];
- if(!function_exists($func)){ return false; } } }
return $func($filePath);
- }
/**hash 圖片
- * @param resource $src 圖片 resource ID
- * @return string 圖片 hash 值,失敗則是 false
- **/
- 公共靜態函數 hashImage( $src){
- if(! $src){ 回傳false; }
/* 縮小圖片尺寸*/
- $delta = 8 * self::$rate;
- $img = imageCreateTrueColor($delta,$delta);
- imageCopyResized($img,$src, 0,0 ,0,0, $delta,$delta,imagesX($src),imagesY($src));
/* 計算圖片灰階值*/
- $grayArray = array();
- for ($y=0; $y for ($x=0; $ x $rgb = imagecolorat($img,$x,$y);
- $col = imagecolorsforindex($img, $rgb);
- $gray = intval( ($col['紅色'] $col['綠色'] $col['藍色'])/3)& 0xFF;
$grayArray[] = $gray;
- }
- }
- imagedestroy($img);
/*計算所有灰階雛形的像素*/
- $average = array_sum($grayArray)/count($grayArray);
/* 計算儲存值*/
- $hashStr = '';
- foreach ($grayArray as $gray){
- $hashStr .= ($gray>=$平均的) ? '1' : '0';
- }
- return $hashStr;
- }
/**hash 圖片檔
- * @param string $filePath 檔案位址路徑
- * @return string 圖片 hash 值,失敗則是 false
- **/
- 公用靜態函數 hashImageFile($ filePath){
- $src = self::createImage($filePath);
- $hashStr = self::hashImage($src);
- imagedestroy($src);
回傳 $hashStr;
- }
/**比較兩個hash 值,是不是相似
- * @param string $aHash A圖片的hash 值
- * @param string $bHash B圖片的hash 值
- * @return bool 當圖片相似則傳遞true ,否則是false
- **/
- 公共靜態函數isHashSimilar($aHash, $bHash){
- $aL = strlen($aHash); $bL = strlen($bHash);
- if ($aL !== $bL){ return false; }
/* 計算草莓落差的數量*/
- $allowGap = $aL*(100-self::$similarity)/100;
/* 計算兩個漢明距離的雜湊值*/
- $distance = 0;
- for($i=0; $i if ($aHash {$ i} !== $bHash{$i}){ $距離 ; }
- }
回傳($distance
/**두 이미지 파일을 비교하여 유사한지 확인
- * @param string $aHash 이미지 A의 경로
- * @param string $bHash 이미지 B의 경로
- * @return bool 이미지가 다음인 경우 true를 전달합니다. 유사하고, 그렇지 않으면 거짓입니다.
- **/
- 공개 정적 함수 isImageFileSimilar($aPath, $bPath){
- $aHash = ImageHash::hashImageFile($aPath);
- $bHash = ImageHash::hashImageFile($bPath);
- return ImageHash::isHashSimilar($aHash, $bHash);
- }
- }
코드 복사
|