我想使用golang语言制作Mac桌面的屏幕截图。有一个很好和简单的工具:https://github.com/kbinani/screenshot 我已经使用它很长一段时间了,但最近我试图再次使用它,并注意到我的两台Macbook(big sur和catalina)上有一个奇怪的bahaviour。
下面是一个简单的代码:
package main
import (
"fmt"
"github.com/kbinani/screenshot"
"image/png"
"os"
)
func main(){
bounds := screenshot.GetDisplayBounds(0)
img, err := screenshot.CaptureRect(bounds)
if err != nil {
panic(err)
}
fileName := fmt.Sprintf("%d_%dx%d.png", 0, bounds.Dx(), bounds.Dy())
file, _ := os.Create(fileName)
defer file.Close()
png.Encode(file, img)
fmt.Printf("#%d : %v \"%s\"\n", 0, bounds, fileName)
}
上面的代码应该捕获第一个屏幕,并将文件像“0_2560x1440.png”一样保存在二进制附近。当我从Jetbrains Goland IDE运行二进制文件时,或者当我在Jetbrains Goland IDE终端中使用go run main.go命令时,一切都很好。但是,如果我从默认终端(或iTerm)运行二进制文件或运行main.go,我将收到没有任何窗口的屏幕截图,只是一个没有任何winodws或foldres的普通桌面。
这是什么原因呢?从 IDE 终端或操作系统终端运行二进制文件有什么区别?
经过一些考虑,我认为也许在golang屏幕截图库中的某个地方有一个错误。我试图使用OSX api运行另一个代码:
package main
// To use the two libraries we need to define the respective flags, include the required header files and import "C" immediately after
import (
// #cgo LDFLAGS: -framework CoreGraphics
// #cgo LDFLAGS: -framework CoreFoundation
// #include <CoreGraphics/CoreGraphics.h>
// #include <CoreFoundation/CoreFoundation.h>
"C"
"image"
"image/png"
"os"
"reflect"
"unsafe"
// other packages...
)
func main() {
displayID := C.CGMainDisplayID()
width := int(C.CGDisplayPixelsWide(displayID))
height := int(C.CGDisplayPixelsHigh(displayID))
rawData := C.CGDataProviderCopyData(C.CGImageGetDataProvider(C.CGDisplayCreateImage(displayID)))
length := int(C.CFDataGetLength(rawData))
ptr := unsafe.Pointer(C.CFDataGetBytePtr(rawData))
代码给出相同的结果。在 IDE 终端中运行 - 正常行为。在其他地方运行 - 屏幕截图现在有内容。
请帮我揭开它的神秘面纱。
当年话下
相关分类