Opened 15 years ago
Closed 13 years ago
#1991 closed Bug (Wont Fix)
Include CAPTUREBLT flag in _ScreenCapture_Capture
| Reported by: | Chess | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | Standard UDFs | |
| Version: | 3.3.6.1 | Severity: | None |
| Keywords: | Cc: |
Description
In order to capture the layered windows when capturing the desktop. The flag CAPTUREBLT should be included:
Old code
Global Const $__SCREENCAPTURECONSTANT_SRCCOPY = 0x00CC0020 ... _WinAPI_BitBlt( ... , $__SCREENCAPTURECONSTANT_SRCCOPY)
New code:
_WinAPI_BitBlt( ... , BitOR($SRCCOPY, $CAPTUREBLT))
NOTE: The constants are already listed in WinAPI.au3 so there is no need to hardcode another one...
Attachments (2)
Change History (7)
comment:1 by , 15 years ago
by , 14 years ago
| Attachment: | ScreenCaptureV2.au3 added |
|---|
New include file containing fixes for _ScreenCapture_Capture and _ScreenCapture_CaptureWnd functions
by , 14 years ago
| Attachment: | ScreenCaptureV2.2.au3 added |
|---|
Update for _ScreenCapture_CaptureV2 _ScreenCapture_CaptureWndV2 Added optional parameter $iBitBltFlag - Flag to pass to the _WinAPI_BitBlt operation default it BitOR($SRCCOPY, $CAPTUREBLT) instead of $SRCCOPY only Tested with AutoIT 3.3.6.1 Fix over previous version with gross error where $SRCCPY was used instead of $iBitBltFlag
comment:3 by , 14 years ago
| Component: | AutoIt → Standard UDFs |
|---|
comment:4 by , 13 years ago
Discussion thread: http://www.autoitscript.com/forum/topic/131265-screencapture-capturewndv2/
comment:5 by , 13 years ago
| Resolution: | → Wont Fix |
|---|---|
| Status: | new → closed |

Actually, the right fix would be to let the user choose whether he wants to use this flag or not. So the best would be to add one more parameter to the _ScreenCapture_Capture function (and the _ScreenCapture_CaptureWnd one as well).
Thanks.