【问题标题】:Winapi: How to display screenshot on window using UpdateLayeredWindowWinapi:如何使用 UpdateLayeredWindow 在窗口上显示屏幕截图
【发布时间】:2019-07-28 17:40:30
【问题描述】:

我一直在驱使自己尝试做一些在我看来应该相对直截了当的事情, 我正在尝试截取特定窗口的屏幕截图(使用 PrintWindow) 并在新窗口上显示屏幕截图(使用 CreateWindowEx 和 UpdateLayeredWindow)

逻辑:

TakeNotepadScreenShot->DrawOverWindow->DisplayWindow

类似:

1. Take Notepad Screenshot: 
HBITMAP hBmp = PrintWindow(FindWindow("notepad")); //Not Entire Screen, Only notepad

2. Create Window (As Canvas):
HWND hWnd = CreateWindowEx(WS_EX_LAYERED, "WindowClassName", 0, WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);

3. Draw Notepad Image:
Draw_HBitmap_OverWindow(hBmp,hWnd);
//Using UpdateLayeredWindow

4. Show Window / Display Notepad Screenshot
ShowWindow(hWnd, SW_SHOW);

见:How to get screenshot of a window as bitmap object in C++?

但是如何显示图像呢? (C++/控制台应用程序/空项目)

【问题讨论】:

  • 您可以使用UpdateLayeredWindow()HBITMAP 图像分配给窗口。该窗口将保留图像并在需要时为您在屏幕上绘制。
  • 否则,您可以子类化窗口并手动处理WM_PAINT 消息,方法是将HBITMAPBitBlt()StretchBlt() 绘制到BeginPaint() 返回的HDC 上.
  • @RemyLebeau 我尝试了太多次(在窗口上显示 printwindow),没有成功,你可以给我一个示例代码吗?谢谢你。
  • 你试过PrintWindow(FindWindow(NULL, "notepad"), GetDC(hWnd), 0);吗?

标签: c++ windows winapi bitmap window


【解决方案1】:

您最好创建一个 Windows 桌面应用程序。 我添加了一个“打印”菜单,然后添加 PrintWindow(FindWindow(L"Notepad", L"xxx.txt - Notepad"), GetDC(hWnd), 0);

.cpp:

// WindowsProject9.cpp : Defines the entry point for the application.
//

#include "stdafx.h"
#include "WindowsProject9.h"

#define MAX_LOADSTRING 100

// Global Variables:
HINSTANCE hInst;                                // current instance
WCHAR szTitle[MAX_LOADSTRING];                  // The title bar text
WCHAR szWindowClass[MAX_LOADSTRING];            // the main window class name

// Forward declarations of functions included in this code module:
ATOM                MyRegisterClass(HINSTANCE hInstance);
BOOL                InitInstance(HINSTANCE, int);
LRESULT CALLBACK    WndProc(HWND, UINT, WPARAM, LPARAM);
INT_PTR CALLBACK    About(HWND, UINT, WPARAM, LPARAM);

int APIENTRY wWinMain(_In_ HINSTANCE hInstance,
                     _In_opt_ HINSTANCE hPrevInstance,
                     _In_ LPWSTR    lpCmdLine,
                     _In_ int       nCmdShow)
{
    UNREFERENCED_PARAMETER(hPrevInstance);
    UNREFERENCED_PARAMETER(lpCmdLine);

    // TODO: Place code here.

    // Initialize global strings
    LoadStringW(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
    LoadStringW(hInstance, IDC_WINDOWSPROJECT9, szWindowClass, MAX_LOADSTRING);
    MyRegisterClass(hInstance);

    // Perform application initialization:
    if (!InitInstance (hInstance, nCmdShow))
    {
        return FALSE;
    }

    HACCEL hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_WINDOWSPROJECT9));

    MSG msg;

    // Main message loop:
    while (GetMessage(&msg, nullptr, 0, 0))
    {
        if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))
        {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
        }
    }

    return (int) msg.wParam;
}



//
//  FUNCTION: MyRegisterClass()
//
//  PURPOSE: Registers the window class.
//
ATOM MyRegisterClass(HINSTANCE hInstance)
{
    WNDCLASSEXW wcex;

    wcex.cbSize = sizeof(WNDCLASSEX);

    wcex.style          = CS_HREDRAW | CS_VREDRAW;
    wcex.lpfnWndProc    = WndProc;
    wcex.cbClsExtra     = 0;
    wcex.cbWndExtra     = 0;
    wcex.hInstance      = hInstance;
    wcex.hIcon          = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_WINDOWSPROJECT9));
    wcex.hCursor        = LoadCursor(nullptr, IDC_ARROW);
    wcex.hbrBackground  = (HBRUSH)(COLOR_WINDOW+1);
    wcex.lpszMenuName   = MAKEINTRESOURCEW(IDC_WINDOWSPROJECT9);
    wcex.lpszClassName  = szWindowClass;
    wcex.hIconSm        = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL));

    return RegisterClassExW(&wcex);
}

//
//   FUNCTION: InitInstance(HINSTANCE, int)
//
//   PURPOSE: Saves instance handle and creates main window
//
//   COMMENTS:
//
//        In this function, we save the instance handle in a global variable and
//        create and display the main program window.
//
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
{
   hInst = hInstance; // Store instance handle in our global variable

   HWND hWnd = CreateWindowW(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,
      CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, nullptr, nullptr, hInstance, nullptr);
   if (!hWnd)
   {
      return FALSE;
   }

   ShowWindow(hWnd, nCmdShow);
   UpdateWindow(hWnd);

   return TRUE;
}

//
//  FUNCTION: WndProc(HWND, UINT, WPARAM, LPARAM)
//
//  PURPOSE:  Processes messages for the main window.
//
//  WM_COMMAND  - process the application menu
//  WM_PAINT    - Paint the main window
//  WM_DESTROY  - post a quit message and return
//
//
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    switch (message)
    {
    case WM_COMMAND:
        {
            int wmId = LOWORD(wParam);
            // Parse the menu selections:
            switch (wmId)
            {
            case IDM_ABOUT:
                DialogBox(hInst, MAKEINTRESOURCE(IDD_ABOUTBOX), hWnd, About);
                break;
            case IDM_EXIT:
                DestroyWindow(hWnd);
                break;
            case ID_HELP_PRINT:
                PrintWindow(FindWindow(L"Notepad", L"xxx.txt - Notepad"), GetDC(hWnd), 0);
            default:
                return DefWindowProc(hWnd, message, wParam, lParam);
            }
        }
        break;
    case WM_PAINT:
        {
            PAINTSTRUCT ps;
            HDC hdc = BeginPaint(hWnd, &ps);
            // TODO: Add any drawing code that uses hdc here...
            EndPaint(hWnd, &ps);
        }
        break;
    case WM_DESTROY:
        PostQuitMessage(0);
        break;
    default:
        return DefWindowProc(hWnd, message, wParam, lParam);
    }
    return 0;
}

// Message handler for about box.
INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
    UNREFERENCED_PARAMETER(lParam);
    switch (message)
    {
    case WM_INITDIALOG:
        return (INT_PTR)TRUE;

    case WM_COMMAND:
        if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
        {
            EndDialog(hDlg, LOWORD(wParam));
            return (INT_PTR)TRUE;
        }
        break;
    }
    return (INT_PTR)FALSE;
}

编辑:

我已将项目上传到我的 onedrive,this 是链接。

【讨论】:

  • 谢谢德雷克! ,WindowsProject9.h 丢失:错误 C2065:'IDI_WINDOWSPROJECT9':未声明的标识
  • 我已将项目上传到我的 onedrive,请参阅我的回答中的编辑。
  • 它有效,谢谢!,还有一点我想问:我想为 HBITMAP 设置灰度效果,我该怎么做?我该如何设置像素? PrintWindow(hWnd,GetDC(hWnd),0);效果很好,但我想更改位图数据 LockBitmap LockBits,谢谢 =]。
  • HWND hWnd = FindWindow(TEXT("Notepad"), NULL); HBITMAP NotepadGray = grayscale(PrintWindow(hWnd,GetDC(hWnd),0));显示(记事本灰色);
  • 你可能需要看看CImageclass
猜你喜欢
  • 2019-03-25
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多