您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

JAVA中的原理移栽到PHP中

2024/4/23 0:06:06发布20次查看
java中的原理移植到php中
一下是我在csdn上下载的一段java的源代码。目的是计算出图片指纹,
public static string producefingerprint(string filename) {
bufferedimage source = imagehelper.readpngimage(filename);// 读取文件
int width = 8;
int height = 8;
// 第一步,缩小尺寸。
// 将图片缩小到8x8的尺寸,总共64个像素。这一步的作用是去除图片的细节,只保留结构、明暗等基本信息,摒弃不同尺寸、比例带来的图片差异。
bufferedimage thumb = imagehelper.thumb(source, width, height, false);
// 第二步,简化色彩。
// 将缩小后的图片,转为64级灰度。也就是说,所有像素点总共只有64种颜色。
int[] pixels = new int[width * height];
for (int i = 0; i  for (int j = 0; j  pixels[i * height + j] = imagehelper.rgbtogray(thumb.getrgb(i, j));
}
}
// 第三步,计算平均值。
// 计算所有64个像素的灰度平均值。
int avgpixel = imagehelper.average(pixels);
// 第四步,比较像素的灰度。
// 将每个像素的灰度,与平均值进行比较。大于或等于平均值,记为1;小于平均值,记为0。
int[] comps = new int[width * height];
for (int i = 0; i  if (pixels[i] >= avgpixel) {
comps[i] = 1;
} else {
comps[i] = 0;
}
}
// 第五步,计算哈希值。
// 将上一步的比较结果,组合在一起,就构成了一个64位的整数,这就是这张图片的指纹。组合的次序并不重要,只要保证所有图片都采用同样次序就行了。
stringbuffer hashcode = new stringbuffer();
for (int i = 0; i  int result = comps[i] * (int) math.pow(2, 3) + comps[i + 1] * (int) math.pow(2, 2) + comps[i + 2] * (int) math.pow(2, 1) + comps[i + 2];
hashcode.append(binarytohex(result));
}
// 得到指纹以后,就可以对比不同的图片,看看64位中有多少位是不一样的。
return hashcode.tostring();
}
现在我要用php做网页也是实现这种功能,问哪位高手能给出转换到php的源代码呢?
------解决方案--------------------
算法描述的很清楚,实现起来就不难
需要注意的是 php 不支持 64位 的整型数,所以函数提供了几种可能的返回样式
/**
 * 生成指纹
 * $filename 图片文件名,可以是url。只能是gd支持的图片类型
 * $retmode 返回格式:0 二进制表示 1 数组 2 十六进制表示
 **/
function producefingerprint($filename, $retmode=0) {
  $sim = imagecreatefromstring( file_get_contents($filename) );
  $dim = imagecreate(8, 8);
  imagecopyresized($dim, $sim, 0, 0, 0, 0, 8, 8, imagesx($sim), imagesy($sim));
  imagetruecolortopalette($sim, true, 64);
  //imagefilter($sim, img_filter_grayscale);
for($x=0; $x    $c = imagecolorat($dim, $x, $y);
    $p[] = array_sum( imagecolorsforindex($dim, $c))/3;
  }
  $avl = array_sum($p)/count($p);
  $r = '';
  foreach($p as $v) $r .= $v>=$avl ? 1 : 0;
if($retmode == 0) return $r;
  $p = array_map('bindec', str_split($r, 8));
  if($retmode == 1) return $p;
  if($retmode == 2) {

该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product