我正在尝试为Go中的OpenGL项目编写截图函数,我正在使用此处的OpenGL绑定:
这是我用来制作屏幕截图的代码,或者,这就是我正在做的事情:
width, height := r.window.GetSize()
pixels := make([]byte, 3*width*height)
// Read the buffer into memory
var buf unsafe.Pointer
gl.PixelStorei(gl.UNPACK_ALIGNMENT, 1)
gl.ReadPixels(0, 0, int32(width), int32(height), gl.RGB, gl.UNSIGNED_BYTE, buf)
pixels = []byte(&buf) // <-- LINE 99
这会在编译期间触发以下错误:
video\renderer.go:99: cannot convert &buf (type *unsafe.Pointer) to type []byte.
如何将unsafe.Pointer
转换为字节数组?
答案 0 :(得分:6)
由于unsafe.Pointer
已经是指针,因此您无法使用指向unsafe.Pointer
的指针,但您应该直接使用它。一个简单的例子:
bytes := []byte{104, 101, 108, 108, 111}
p := unsafe.Pointer(&bytes)
str := *(*string)(p) //cast it to a string pointer and assign the value of this pointer
fmt.Println(str) //prints "hello"