我试图在 Native Win32 C++ 中绘制一个稍微透明的蓝色矩形。我正在使用函数 AlphaBlend() 但它没有在窗口上绘制任何东西,没有任何反应。
我的问题:当我运行我的函数来绘制一个稍微透明的矩形时,它没有显示在我的窗口上。我有一种感觉我做错了,也许我应该使用 HBITMAP?
你能告诉我我需要做什么才能让我的函数在窗口上绘制一个稍微透明的矩形吗?
我也知道 GDI+,但我现在想避免它,因为我在使用该库时遇到了很多编译/包含错误,而且我想在没有库的帮助的情况下尽可能低/原生我。
bool paintRect(HDC hdc, RECT dim, COLORREF penCol, COLORREF brushCol, unsigned int opacity)
{
HDC tempHdc = CreateCompatibleDC(hdc);
BLENDFUNCTION blend = {AC_SRC_OVER, 0, 127, AC_SRC_ALPHA};
SetDCPenColor(tempHdc, RGB(255,255,0));
SetDCBrushColor(tempHdc, RGB(255,255,0));
Rectangle(tempHdc, dim.left, dim.top, dim.right, dim.bottom);
return bool(AlphaBlend(hdc, dim.left, dim.top, dim.right, dim.bottom, tempHdc, dim.left, dim.top, dim.right, dim.bottom, blend));
}
// Usage
case WM_PAINT:
{
HDC hdc;
PAINTSTRUCT ps;
hdc = BeginPaint(hwnd, &ps);
RECT a = {0,0,100,100};
paintRect(hdc, a, RGB(255,255,0), RGB(255,255,0), 127); // 127 is 50% transparency right?
EndPaint(hwnd, &ps);
}
break;