作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
golang 成像新手
我正在尝试为 jpeg 图像生成一致的哈希值。当我以 JPEG 格式写入磁盘(这是预期的)后重新加载图像时,加载图像并在原始字节上生成哈希值会给出不同的哈希值。一旦我将 RBGA 作为 JPEG 写入磁盘,像素就会被修改,这会破坏我之前计算的哈希值。
仅对文件进行哈希处理 hash("abc.jpeg")
就意味着我必须写入磁盘;读回;生成哈希值等..
// Open the input image file
inputFile, _ := os.Open("a.jpg")
defer inputFile.Close()
// Decode the input image
inputImage, _, _ := image.Decode(inputFile)
// Get the dimensions of the input image
width := inputImage.Bounds().Dx()
height := inputImage.Bounds().Dy()
subWidth := width / 4
subHeight := height / 4
// Create a new image
subImg := image.NewRGBA(image.Rect(0, 0, subWidth, subHeight))
draw.Draw(subImg, subImg.Bounds(), inputImage, image.Point{0, 0}, draw.Src)
// id want the hashes to be the same for read / write but they will always differ
hash1 := sha256.Sum256(imageToBytes(subImg))
fmt.Printf("<---OUT [%s] %x\n", filename, hash1)
jpg, _ := os.Create("mytest.jpg")
_ = jpeg.Encode(jpg, subImg, nil)
jpg.Close()
// upon reading it back in the pixels are ever so slightly diff
f, _ := os.Open("mytest.jpg")
img, _, _ := image.Decode(f)
jpg_input := image.NewRGBA(img.Bounds())
draw.Draw(jpg_input, img.Bounds(), img, image.Point{0, 0}, draw.Src)
hash2 := sha256.Sum256(imageToBytes(jpg_input))
fmt.Printf("--->IN [%s] %x\n", filename, hash2)
// real world use case is..
// generate subtile of large image plus hash
// if hash in a dbase
// pixel walk to see if hash collision occurred
// if pixels are different
// deal with it...
/// else
// object.filename = dbaseb.filename
// else
// add filename to dbase with hash as the lookup
// write to jpeg to disk
最佳答案
您可以使用哈希作为编写器的目标,并使用 io.MultiWriter 在写入文件时计算哈希:
hash:=sha256.New()
jpeg.Encode(io.MultiWriter(file,hash),img,nil)
hashValue:=hash.Sum(nil)
关于image - Golang 为 jpeg 图像生成一致的哈希值,而无需写入磁盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/77153217/
我是一名优秀的程序员,十分优秀!