我可以修改图像的像素值吗?

我想在 Go 中做这样的事情:


for x := 0; x < width; x++ {

    for y := 0; y < height; y++ {

            // something similar to this:

            src_img[x, y] = color.Black

    }

}

是否可以这样做,只导入“图像”、“图像/jpeg”、“图像/颜色”?


四季花海
浏览 200回答 2
2回答

梦里花落0921

该image.RGBA类型是在内存中存储的图像,如果你想修改它们的首选方式。它实现了draw.Image接口,该接口具有设置像素的便捷方法:Set(x, y int, c color.Color)不幸的是,并非所有解码器都以 RGBA 格式返回图像。他们中的一些人以压缩格式保留图像,其中并非每个像素都可以修改。对于许多只读用例来说,这更快更好。但是,如果要编辑图像,则可能需要复制它。例如:src, _, err := image.Decode(file)if err != nil {&nbsp; &nbsp; log.Fatal(err)}rgba, ok := src.(*image.RGBA)if !ok {&nbsp; &nbsp; b := src.Bounds()&nbsp; &nbsp; rgba = image.NewRGBA(image.Rect(0, 0, b.Dx(), b.Dy()))&nbsp; &nbsp; draw.Draw(rgba, rgba.Bounds(), src, b.Min, draw.Src)}// rgba is now a *image.RGBA and can be modified freelyrgba.Set(0, 0, color.RGBA{255, 0, 0, 255})
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go