我在 golang 中的图像遇到一个简单的问题。我正在用颜色绘制 png 图像,但结果不是我想要的。
在 Alpha 值最低的像素中,绘制另一种颜色。我正在使用 alphaChannel = false
/* return new image with new color
* alphaChannel = true get AlphaChannel from given color
* alphaChannel = false get AlphaChannel from image (x,y) point
*/
func PaintPngImage(img image.Image, cl color.Color, alphaChannel bool) image.Image {
R, G, B, A := cl.RGBA()
composeImage := image.NewRGBA(img.Bounds())
// paint image over a new image
draw.Draw(composeImage, composeImage.Bounds(), img, image.Point{}, draw.Over)
// paint new color over the image
bounds := composeImage.Bounds()
w, h := bounds.Max.X, bounds.Max.Y
for x := 0; x < w; x++ {
for y := 0; y < h; y++ {
_, _, _, aa := composeImage.At(x, y).RGBA()
if !alphaChannel {
A = aa
}
realColor := color.RGBA{R: uint8(R),G: uint8(G),B: uint8(B),A: uint8(A)}
if aa != 0 {
composeImage.Set(x, y, realColor)
}
}
}
return composeImage
}
colorLayer := PaintPngImage(layerImage, cl, false)
out, err := os.Create("./output/test.png")
utils.ShowFatalError(err)
err = png.Encode(out, colorLayer)
utils.CloseFile(out) // close file os.Close
utils.ShowFatalError(err) // Show panic log if err != nil
决赛:[ 1 ]
如果我使用 jpeg.Decode 而不是 png.Decode 图像没有奇怪的颜色。
至尊宝的传说
狐的传说
相关分类