問題:
從Go 中的影像中擷取像素數組位元組數組的形式對於將其傳遞給gl.Context 的texImage2D 方法是必要的。所需的像素數組由從左到右、從上到下的順序排列的 RGBA 值組成。
解決方案:
要取得像素數組,請執行以下操作可以採取以下步驟:
package main import ( "fmt" "image" "image/png" "os" "io" "net/http" ) func main() { // Register other formats as needed image.RegisterFormat("png", "png", png.Decode, png.DecodeConfig) file, err := os.Open("./image.png") if err != nil { fmt.Println("Error: File could not be opened") os.Exit(1) } defer file.Close() pixels, err := getPixels(file) if err != nil { fmt.Println("Error: Image could not be decoded") os.Exit(1) } fmt.Println(pixels) } func getPixels(file io.Reader) ([][]Pixel, error) { img, _, err := image.Decode(file) if err != nil { return nil, err } bounds := img.Bounds() width, height := bounds.Max.X, bounds.Max.Y var pixels [][]Pixel for y := 0; y < height; y++ { var row []Pixel for x := 0; x < width; x++ { row = append(row, rgbaToPixel(img.At(x, y).RGBA())) } pixels = append(pixels, row) } return pixels, nil } func rgbaToPixel(r uint32, g uint32, b uint32, a uint32) Pixel { return Pixel{int(r / 257), int(g / 257), int(b / 257), int(a / 257)} } type Pixel struct { R int G int B int A int }
透過以下步驟,您可以有效地從影像中取得像素數組,以便與Go中的 texImage2D 方法一起使用。
以上是如何在 Go 中從圖像中提取像素數組以獲取'texImage2D”?的詳細內容。更多資訊請關注PHP中文網其他相關文章!