通过直接绘制 API 更改 Windows 移动设备上的位格式

发布于 2025-01-01 13:18:06 字数 514 浏览 2 评论 0原文

我正在使用 Windows Mobile 6.5 设备,希望将图像从一个应用程序(使用 GDI 绘制)复制到另一个应用程序(使用直接绘制)。目前我正在为此进行位转换,因为直接绘制仅支持 16 位,而 GDI 图像是使用 24 位写入的。我想知道我们是否可以更改直接绘制格式,以便我可以避免这种转换。

DDPIXELFORMAT format;
m_pPrimarySurface->GetPixelFormat (&format);    
if (format.dwRGBBitCount == 16)
{
    format.dwRGBBitCount = 32;
    format.dwRBitMask  = 0x00FF0000;
    format.dwGBitMask  = 0x0000FF00;
    format.dwBBitMask  = 0x000000FF;
}

是否可以通过直接设置或通过任何直接绘制 API(如 SetPixelFormat 等)来更改位格式?或者这是一些硬件设置并且无法更改?

I am working on a Windows Mobile 6.5 device and want to copy an image from one application (drawn using GDI) to another application (using direct draw). Currently I am doing bit conversion for this since the direct draw supports only 16-bit whereas the GDI image is written using 24-bit. I am wondering if we can change the direct draw format so that I can avoid this conversion.

DDPIXELFORMAT format;
m_pPrimarySurface->GetPixelFormat (&format);    
if (format.dwRGBBitCount == 16)
{
    format.dwRGBBitCount = 32;
    format.dwRBitMask  = 0x00FF0000;
    format.dwGBitMask  = 0x0000FF00;
    format.dwBBitMask  = 0x000000FF;
}

Is it possible to change the bit format by directly setting it or through any direct draw APIs like SetPixelFormat etc.? Or is this some hardware setting and cant be changed?

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

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

发布评论

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

评论(1

泅人 2025-01-08 13:18:06

API SetDisplayMode() 表示“Windows CE 不支持显示模式更改”。

msdn.microsoft.com/en-us/library/ms893936.aspx

The API SetDisplayMode() says that "Windows CE does not support display mode changes".

msdn.microsoft.com/en-us/library/ms893936.aspx

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