ExtCreatePen 和 Windows 7 GDI

发布于 2024-08-19 02:34:43 字数 1367 浏览 2 评论 0原文

我使用 ExtCreatePen API 创建了 DIBPATTERN 笔,用于自定义图案笔。

它在 Windows XP 上成功绘制了所需的线条,

但在 Windows 7(我的情况是 x64)上,它没有绘制任何线条;屏幕上没有任何变化。

(其他简单创建的笔,例如 CreatePen(PS_DOT,1,0),正在工作。)

我发现调用 SetROP2(hdc, R2_XORPEN) 会使以下画线 API 调用绘制一些内容,但使用 XOR 操作。我不想进行异或绘图。

这是我创建笔的代码。在 Windows XP 上没有问题:

LOGBRUSH lb;
lb.lbStyle = BS_DIBPATTERN;
lb.lbColor = DIB_RGB_COLORS;
int cb = sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 2 + 8*4; 
HGLOBAL hg = GlobalAlloc(GMEM_MOVEABLE, cb);                
BITMAPINFO* pbmi = (BITMAPINFO*) GlobalLock(hg);
ZeroMemory(pbmi, cb);
pbmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER); 
pbmi->bmiHeader.biWidth = 8; 
pbmi->bmiHeader.biHeight = 8; 
pbmi->bmiHeader.biPlanes = 1; 
pbmi->bmiHeader.biBitCount = 1; 
pbmi->bmiHeader.biCompression = BI_RGB;
pbmi->bmiHeader.biSizeImage = 8;
pbmi->bmiHeader.biClrUsed = 2;
pbmi->bmiHeader.biClrImportant = 2;
pbmi->bmiColors[1].rgbBlue =
pbmi->bmiColors[1].rgbGreen =
pbmi->bmiColors[1].rgbRed = 0xFF;
DWORD* p = (DWORD*) &pbmi->bmiColors[2];
for(int k=0; k<8; k++) *p++ = patterns[k];
GlobalUnlock(hg);
lb.lbHatch = (LONG) hg;
s_aSelectionPens[i] = ExtCreatePen(PS_GEOMETRIC, 1, &lb, 0, NULL);
ASSERT(s_aSelectionPens[i]); // success on both XP and Win7
GlobalFree(hg);

这只是我的电脑上的错误吗?请检查这个问题。 谢谢。

I created DIBPATTERN pens with ExtCreatePen API for custom pattern pens.

It sucessfully draws desired lines on Windows XP,

But on Windows 7 (x64 for my case), it does not draw any lines; no changes on screen.

(Other simply created pens, for example CreatePen(PS_DOT,1,0), are working.)

I found that calling SetROP2(hdc, R2_XORPEN) makes the following line-drawing API calls draw something but with XOR operation. I don't want XOR drawing.

Here is my code to create the pen. It has no problem on Windows XP:

LOGBRUSH lb;
lb.lbStyle = BS_DIBPATTERN;
lb.lbColor = DIB_RGB_COLORS;
int cb = sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 2 + 8*4; 
HGLOBAL hg = GlobalAlloc(GMEM_MOVEABLE, cb);                
BITMAPINFO* pbmi = (BITMAPINFO*) GlobalLock(hg);
ZeroMemory(pbmi, cb);
pbmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER); 
pbmi->bmiHeader.biWidth = 8; 
pbmi->bmiHeader.biHeight = 8; 
pbmi->bmiHeader.biPlanes = 1; 
pbmi->bmiHeader.biBitCount = 1; 
pbmi->bmiHeader.biCompression = BI_RGB;
pbmi->bmiHeader.biSizeImage = 8;
pbmi->bmiHeader.biClrUsed = 2;
pbmi->bmiHeader.biClrImportant = 2;
pbmi->bmiColors[1].rgbBlue =
pbmi->bmiColors[1].rgbGreen =
pbmi->bmiColors[1].rgbRed = 0xFF;
DWORD* p = (DWORD*) &pbmi->bmiColors[2];
for(int k=0; k<8; k++) *p++ = patterns[k];
GlobalUnlock(hg);
lb.lbHatch = (LONG) hg;
s_aSelectionPens[i] = ExtCreatePen(PS_GEOMETRIC, 1, &lb, 0, NULL);
ASSERT(s_aSelectionPens[i]); // success on both XP and Win7
GlobalFree(hg);

Is it bug only on my PC? Please check this problem.
Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

和我恋爱吧 2024-08-26 02:34:43

这是 Windows 7 GDI 的一个已知错误,不过祝 Microsoft 承认这一点很幸运。

http://social. technet.microsoft.com/Forums/en-US/w7itproappcompat/thread/a70ab0d5-e404-4e5e-b510-892b0094caa3 -

诺埃尔

This is a known bug with the Windows 7 GDI, though good luck getting Microsoft to acknowledge it.

http://social.technet.microsoft.com/Forums/en-US/w7itproappcompat/thread/a70ab0d5-e404-4e5e-b510-892b0094caa3

-Noel

黯然#的苍凉 2024-08-26 02:34:43

我承认,我一开始就持怀疑态度,但我编译并运行了你的程序,它确实无法在 Windows 7 上绘制第二条线,仅在 aero 模式下购买

通过切换到 Windows basic 或经典模式下,所有四条线均按预期绘制。

我只能假设这是与您的自定义笔和航空模式实现 GDI 调用的新方式的某种不良交互。这看起来可能是微软的一个错误,也许你可以在他们的留言板上发布这个问题?

I will admit, I was dubious as first, but I compiled and ran your program, and it does indeed fail to draw the second line on Windows 7, buy only in aero mode

By switching to Windows basic or classic mode, all four lines are drawn, as expected.

I can only assume that this is some kind of bad interaction with your custom pen and the new way aero mode implements GDI calls. This seems like it might be a Microsoft bug, perhaps you can post this question on one of their message boards?

一个人的旅程 2024-08-26 02:34:43

因此,您将创建一个 8x8 黑白(单色)位图作为 DIB,然后使用它来创建一支笔。我认为这段代码没有任何问题。这绝对看起来像是 Windows 错误,但可能有解决方法。

尝试设置

pbmi->bmiHeader.biClrUsed = 0;
pbmi->bmiHeader.biClrImportant = 0;

在这种情况下,将值设置为 0 应该与将其设置为 2 含义相同,但对于使用完整调色板的情况,0 是更标准的行为。您的调色板中仍然需要两个条目,0 仅表示“基于 biBitCount 的完整大小”。

另外,每个调色板条目都是 RGBQUAD,这意味着有 alpha 空间,并且您的 alpha 设置为 0,应该忽略它,但也许事实并非如此。因此,请尝试将两个调色板条目的高字节设置为 0xFF 或 0x80。

最后,您的调色板可能会被完全忽略,并且 Windows 正在使用目标 DC 的 BkMode、BkColor 和 TextColor 来处理所有内容,因此您需要确保将它们设置为您可以看到的值。

我的猜测是,这与 alpha 透明度有关,因为 GDI 完全忽略 alpha,但 Aero 不会。

So you are creating an 8x8 black/white (monochrome) bitmap as a DIB, and then using that to create a pen. I see nothing wrong with this code. this definitely looks like a windows bug, but there may be a workaround.

Try setting

pbmi->bmiHeader.biClrUsed = 0;
pbmi->bmiHeader.biClrImportant = 0;

In this context, setting the values to 0 should mean the same thing as setting them to 2, but 0 is more standard behavior for situations where you have are using the full palette. You still need two entries in your palette, 0 just means "full size based on biBitCount".

Also, each palette entrie is a RGBQUAD, which means there is room for alpha, and your alpha is set to 0, which should be ignored, but maybe it isn't. so try setting the high byte of your two palette entries to 0xFF or 0x80.

Finally, it's possible that your palette is being ignored entirely, and Windows is using the BkMode, BkColor and TextColor of the destination DC for everything, so you need to make sure that they are set to values that you can see.

My guess is that this has something to do with alpha transparency, since GDI ignores alpha entirely, but Aero doesn't.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文