1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
| <?php
class ImageHash {
public static $rate = 2;
public static $similarity = 80;
private static $_createFunc = array( IMAGETYPE_GIF => 'imageCreateFromGIF', IMAGETYPE_JPEG => 'imageCreateFromJPEG', IMAGETYPE_PNG => 'imageCreateFromPNG', IMAGETYPE_BMP => 'imageCreateFromBMP', IMAGETYPE_WBMP => 'imageCreateFromWBMP', IMAGETYPE_XBM => 'imageCreateFromXBM', );
public static function createImage($filePath) { if (!file_exists($filePath)) {return false;}
$type = exif_imagetype($filePath); if (!array_key_exists($type, self::$_createFunc)) {return false;}
$func = self::$_createFunc[$type]; if (!function_exists($func)) {return false;}
return $func($filePath); }
public static function hashImage($src) { if (!$src) {return 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 < $delta; $y++) { for ($x = 0; $x < $delta; $x++) { $rgb = imagecolorat($img, $x, $y); $col = imagecolorsforindex($img, $rgb); $gray = intval(($col['red'] + $col['green'] + $col['blue']) / 3) & 0xFF;
$grayArray[] = $gray; } } imagedestroy($img);
$average = array_sum($grayArray) / count($grayArray);
$hashStr = ''; foreach ($grayArray as $gray) { $hashStr .= ($gray >= $average) ? '1' : '0'; }
return $hashStr; }
public static function hashImageFile($filePath) { $src = self::createImage($filePath); $hashStr = self::hashImage($src); imagedestroy($src);
return $hashStr; }
public static function 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 < $aL; $i++) { if ($aHash{$i} !== $bHash{$i}) {$distance++;} }
return ($distance <= $allowGap) ? true : false; }
public static function isImageFileSimilar($aPath, $bPath) { $aHash = ImageHash::hashImageFile($aPath); $bHash = ImageHash::hashImageFile($bPath); return ImageHash::isHashSimilar($aHash, $bHash); } }
|