ID2D1HwndRenderTarget 总是有黑色背景而不是透明
我正在尝试创建一个简单的透明窗口,我可以在其中使用 Direct2D 进行绘图.
I am trying to create a simple transparent window where I can draw with Direct2D.
到目前为止我做了什么:
So far what I have done:
- 创建的窗口
- 将样式设置为 WS_EX_LAYERED
- 将 alpha 颜色键设置为 #FFF
- 使用 Windows 图形绘制一个白色矩形
- 现在窗口是透明的,具有每个像素的 Alpha 值
- 然后在窗口外制作一个目标并使用 Direct2D 进行绘制
- 制作 ALPHA _PREMULIPLIED 目标
- 使用 0.0f alpha 的 #FFF 清除
我只是不知道如何使窗口透明.如果您能指出我的错误,我将不胜感激
I just don't know how to make window to transparent. If you can point out my mistake, I would be obliged
推荐答案
我认为使用 directX 是不可能的.不过 GDI 确实有效.
I don't think it's possible with directX. However GDI does work.
在此处查看源代码以了解它是如何完成的:http://pastebin.com/NJf8wi2V
Take a look at the source here to see how it's done: http://pastebin.com/NJf8wi2V
在源代码中,您可以看到有一个尝试使用 directx/opengl 的选项.但是,正如您从运行中看到的那样,它们不起作用.
In the source you can see that there is an option to attempt to use directx/opengl. However as you can see from running they do not work.
相关文章