在 XP 模式或远程桌面中绘制图像

发布于 2024-08-29 18:38:39 字数 951 浏览 5 评论 0原文

我正在显示具有透明背景的 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 技术交流群。

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

发布评论

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

评论(1

猫卆 2024-09-05 18:38:39

远程桌面默认以 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.

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