通过直接绘制 API 更改 Windows 移动设备上的位格式
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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