2

我正在创建一个仅使用纯 python(ctypes)的屏幕截图模块,没有像 win32、wx、QT 之类的大库......它必须管理多屏幕(PIL 和 Pillow 不能)。

我阻塞的地方是在调用 CreateDCFromHandle 时,ctypes.windll.gdi32 不知道这个函数。我看了win32源代码就受到启发,但没用。正如评论中所说,这个功能在 MSDN 中不存在,那么我应该应用哪些更改来考虑其他屏幕?

这是适用于主监视器的代码,但不适用于其他监视器:源代码。它在第 35 行阻塞。我尝试了很多组合,在这里和其他网站上寻找答案。但对我来说没有任何功能......这只是一个截图!

你有线索吗?

提前致谢 :)


编辑,我发现了我的秘密!这是有效的代码:

srcdc = ctypes.windll.user32.GetWindowDC(0)
memdc = ctypes.windll.gdi32.CreateCompatibleDC(srcdc)
bmp = ctypes.windll.gdi32.CreateCompatibleBitmap(srcdc, width, height)
ctypes.windll.gdi32.SelectObject(memdc, bmp)
ctypes.windll.gdi32.BitBlt(memdc, 0, 0, width, height, srcdc, left, top, SRCCOPY)        
bmp_header = pack('LHHHH', calcsize('LHHHH'), width, height, 1, 24)
c_bmp_header = c_buffer(bmp_header) 
c_bits = c_buffer(' ' * (height * ((width * 3 + 3) & -4)))
got_bits = ctypes.windll.gdi32.GetDIBits(memdc, bmp, 0, height,
                        c_bits, c_bmp_header, DIB_RGB_COLORS)
# Here, got_bits should be equal to height to tell you all goes well.

带有完整解释的法语文章:Windows : capture d'écran

4

3 回答 3

2

编辑,我发现了我的秘密!这是有效的代码:

srcdc = ctypes.windll.user32.GetWindowDC(0)
memdc = ctypes.windll.gdi32.CreateCompatibleDC(srcdc)
bmp = ctypes.windll.gdi32.CreateCompatibleBitmap(srcdc, width, height)
ctypes.windll.gdi32.SelectObject(memdc, bmp)
ctypes.windll.gdi32.BitBlt(memdc, 0, 0, width, height, srcdc, left, top, SRCCOPY)        
bmp_header = pack('LHHHH', calcsize('LHHHH'), width, height, 1, 24)
c_bmp_header = c_buffer(bmp_header) 
c_bits = c_buffer(' ' * (height * ((width * 3 + 3) & -4)))
got_bits = ctypes.windll.gdi32.GetDIBits(
    memdc, bmp, 0, height, c_bits, c_bmp_header, DIB_RGB_COLORS)
# Here, got_bits should be equal to height to tell you all goes well.
于 2016-09-05T15:59:51.750 回答
1

源码pywin32纯属CreateDCFromHandle捏造。它在 Windows API 中不存在;它只是将 Windows API 事物转换为pywin32事物的桥梁。

由于您使用的是ctypes而不是pywin32,因此无需转换;看看你是否可以跳过这一步:

hwin = user.GetDesktopWindow()
hwindc = user.GetWindowDC(monitor['hmon'])
memdc = gdi.CreateCompatibleDC(hwindc)

当您尝试ctypes在 Python 中执行一些本机 Windows API 的事情时,我发现查看已经使用 Windows API 的现有 C 代码而不是使用围绕它的包装器的 Python 代码更有帮助。

于 2013-06-30T21:00:38.090 回答
1

这不是 Windows API 函数。您将需要EnumDisplayDevicesCreateDC的组合。请注意,您必须在函数名称后附加“A”或“W”,具体取决于您要使用 ANSI 字符串还是 Unicode (widechar) 字符串。

于 2013-06-30T21:01:19.453 回答