duangou2028 2015-11-19 18:27
浏览 125
已采纳

将GDI32.dll位图保存到Golang中的磁盘

My first SO question :-) I wish to take a screenshot from Golang by calling into User32.dll and GDI32.dll on a windows machine (project requirement).

I have a handle to the bitmap containing screenshot pixels. However, I don't know how to access its data or how to save it to disk. Anyone know how to map GDI bitmap to Golang []byte and then save as a JPG or PNG?

package main
import "syscall"

var (
    user32            = syscall.NewLazyDLL("user32.dll")
    procGetClientRect = user32.NewProc("GetClientRect")
    // etc...
    gdi32             = syscall.NewLazyDLL("gdi32.dll")
    procCreateDC      = gdi32.NewProc("CreateDC")
    SRCCOPY      uint = 13369376
   //etc...
)

//
// omitted for brevity
//
func TakeDesktopScreenshotViaWinAPI() {

    // these are all calls to user32.dll or gdi32.dll
    hDesktop := GetDesktopWindow()
    desktopRect := GetClientRect(hDesktop)
    width := int(desktopRect.Right - desktopRect.Left)
    height := int(desktopRect.Bottom - desktopRect.Top)

    // create device contexts
    srcDC := GetDC(hDesktop)
    targetDC := CreateCompatibleDC(srcDC)

    // create bitmap to copy to
    hBitmap := CreateCompatibleBitmap(targetDC, width, height)

    // select the bitmap into target DC
    hOldSelection := SelectObject(targetDC, HGDIOBJ(hBitmap))

    //bit block transfer from src to target
    BitBlt(targetDC, 0, 0, width, height, srcDC, 0, 0, SRCCOPY)

   // how to save the  the data in
   // *hBitmap ???

   // restore selection
   SelectObject(targetDC, hOldSelection)

   // clean up
   DeleteDC(HDC(targetDC))
   ReleaseDC(hDesktop, srcDC)
   DeleteObject(HGDIOBJ(hBitmap))
}
  • 写回答

1条回答

  • dongxu1668 2015-11-19 19:55
    关注

    You could just use the screenshot library by vova616, or take a look at the screenshot_windows.go for the required conversion method.

    As per the provided example:

    package main
    
    import (
        "github.com/vova616/screenshot"
        "image/png"
        "os"
    )
    
    func main() {
        img, err := screenshot.CaptureScreen()
        if err != nil {
            panic(err)
        }
        f, err := os.Create("./ss.png")
        if err != nil {
            panic(err)
        }
        err = png.Encode(f, img)
        if err != nil {
            panic(err)
        }
        f.Close()
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#网络安全#的问题:求ensp的网络安全,不要步骤要完成版文件
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥20 使用Photon PUN2解决游戏得分同步的问题
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM