在 XP 模式或远程桌面中绘制图像
我正在显示具有透明背景的 PNG,在 Windows 7 中看起来不错,但是当我在 XP 模式或远程桌面到 Windows XP 计算机上运行我的应用程序时,PNG 看起来不正确。我注意到,如果我禁用“集成模式”或在没有远程桌面的 XP 上运行应用程序,图像看起来不错。
如何让 DrawImage 在 XP 模式或远程桌面中正确渲染 PNG?
Windows 7 内的图像
替代文本 http://www.freeimagehosting.net/uploads/957bb6ea8b.png< /a>
XP 模式或远程桌面内的图像
替代文本 http://www.freeimagehosting.net/ uploads/08f1fbec46.png
这是我的代码:
protected override void OnPaint(PaintEventArgs e)
{
Image image = Image.FromFile("hello.png", false);
Bitmap bmp = new Bitmap(image);
Rectangle destRect = new Rectangle(0, 0, image.Width, image.Height);
e.Graphics.DrawImage(image, destRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel);
base.OnPaint(e);
}
I'm displaying a PNG with a transparent background that looks good in Windows 7, but then I run my app in XP Mode or remote desktop to a Windows XP machine and the PNG looks incorrect. I noticed that if I disable "Integration Mode" or run the app on XP without remote desktop, the image looks fine.
How do I get DrawImage to render the PNG correctly in XP Mode or remote desktop?
Image inside Windows 7
alt text http://www.freeimagehosting.net/uploads/957bb6ea8b.png
Image inside XP Mode or remote desktop
alt text http://www.freeimagehosting.net/uploads/08f1fbec46.png
Here's my code:
protected override void OnPaint(PaintEventArgs e)
{
Image image = Image.FromFile("hello.png", false);
Bitmap bmp = new Bitmap(image);
Rectangle destRect = new Rectangle(0, 0, image.Width, image.Height);
e.Graphics.DrawImage(image, destRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel);
base.OnPaint(e);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
远程桌面默认以 16 位颜色运行,我认为这与 Alpha 混合不兼容。如果可能的话,您需要将显示器重新配置为 32 位模式。
Remote Desktop by default runs with 16 bit color, which I believe is incompatible with alpha blending. You need to reconfigure the display for 32 bit mode, if that's possible.