我是新來的Windows API。使用一些對WINAPI教程提供Windows的示例代碼:C++ WinApi將圖像.jpg繪製到新窗口?
Graphics.DrawImage(Image*, const Rect) method
我期待打開.jpg
圖像,並將其繪製到我創建了一個新的窗口。問題在於我不確定如何在現有窗口中使用VOID Example_DrawImage9(HDC hdc)
方法。我的第一本能是在回調程序中調用case WM_PAINT
並從那裏使用hdc
,但圖像不顯示。我如何知道供應的正確hdc
?我應該在哪裏調用該方法?
#include <windows.h>
#include "stdafx.h"
#include <objidl.h>
#include <gdiplus.h>
using namespace Gdiplus;
#pragma comment (lib,"Gdiplus.lib")
//*************************************************** added for gdiplus
HWND hEdit;
//************************************************how do I use this method with the window I have created below?
VOID Example_DrawImage9(HDC hdc){
Graphics graphics(hdc); // Create an Image object.
Image image(L"C:/Users/Me/Desktop/fuzz.jpg"); // Create a Pen object.
Pen pen(Color(255, 255, 0, 0), 2); // Draw the original source image.
graphics.DrawImage(&image, 10, 10); // Create a Rect object that specifies the destination of the image.
Rect destRect(200, 50, 150, 75); // Draw the rectangle that bounds the image.
graphics.DrawRectangle(&pen, destRect); // Draw the image.
graphics.DrawImage(&image, destRect);
}
//*********************************************************************************************
LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, PWSTR pCmdLine, int nCmdShow)
{
const wchar_t CLASS_NAME[] = L"Sample Window Class";
WNDCLASS wc = {};
wc.lpfnWndProc = WindowProc; //attach this callback procedure
wc.hInstance = hInstance; //handle to application instance
wc.lpszClassName = CLASS_NAME;
RegisterClass(&wc); //register wc
// Create the window.
HWND hwnd = CreateWindowEx(
0, // Optional window styles.
CLASS_NAME, // Window class
L"Learn to Program Windows", // Window text
WS_OVERLAPPEDWINDOW, // Window style
// Size and position
CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
NULL, // Parent window
NULL, // Menu
hInstance, // Instance handle
NULL // Additional application data
);
if (hwnd == NULL){
return 0;
}
ShowWindow(hwnd, nCmdShow);
MSG msg = {};
while (GetMessage(&msg, NULL, 0, 0)){
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return 0;
}
//callback procedure for this window, takes in all the window details
LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam){
switch (uMsg){
case WM_DESTROY:
PostQuitMessage(0);
return 0;
case WM_PAINT:{
PAINTSTRUCT ps;
HDC hdc = BeginPaint(hwnd, &ps);
//***************************************************************
//do we call DrawImage here? what do we need to pass as hdc?
//Example_DrawImage9(HDC hdc);//?????????????
//***************************************************************
FillRect(hdc, &ps.rcPaint, (HBRUSH)(COLOR_WINDOW + 1));
EndPaint(hwnd, &ps);
}
return 0;
}
return DefWindowProc(hwnd, uMsg, wParam, lParam);
}
不按本能編碼。相反,請閱讀[評論]中提供給您的資源(http://stackoverflow.com/questions/35698324/winapi-create-window-child-windows-process-a-button-press#comment59074595_35698324)到您以前的問題。 – IInspectable
我認爲'Graphics'會試圖摧毀當它超出範圍時通過它的HDC。如果不是,那麼當你在之後立即填充一個矩形時,你認爲會是什麼結果? –
@MarkRansom:'Graphics'類不會破壞提供的'HDC'。 –