Novo em imagens golang
Estou tentando gerar um hash consistente para uma imagem JPEG. Carregar a imagem e gerar um valor de hash nos bytes brutos me dá um hash diferente quando recarrego a imagem depois de gravar no disco como JPEG (o que era esperado). Assim que escrevo o RBGA como JPEG no disco, os pixels são modificados e isso quebra o hash que calculei anteriormente.
Apenas fazer o hash do arquivo hash("abc.jpeg")
significaria que eu teria que gravar no disco; leia de volta; gerar o hash etc.
- há alguma configuração que eu possa usar ao ler/escrever que possa controlar o comportamento dos pixels JPEG de saída
- devo usar *image.RGBA? a imagem de entrada é *image.YCbCr?
// 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