如何使用 LoadImage 和 StretchDIBits 绘制 PNG 图像?

发布于 2024-10-09 16:15:53 字数 610 浏览 3 评论 0原文

(这与我如何使用 Win32/GDI 加载 PNG 图像(如果可能的话,不要使用 GDI+)?。)

大家好,

我想知道,假设您有一个 PNG 资源嵌入到带有 ID 的二进制文件中IDB_PNG1,以及要绘制的 LPDRAWITEMSTRUCT(这意味着您拥有 HDC 和目标矩形),如何绘制它使用 StretchDIBits 将图像显示到屏幕上?我之前使用过 BitBltTransparentBlt,但 StretchDIBits 的工作方式似乎有所不同,而 LoadImage 则不然似乎可以与 PNG 一起使用。

谢谢你!

(注意:我使用的语言是 C++,但这并不是太重要......C、C#、Visual Basic 等都可以;我只是想弄清楚步骤,而不是所需的确切代码。)

(This is related to the question on How would I load a PNG image using Win32/GDI (no GDI+ if possible)?.)

Hi all,

I was wondering, given that you have a PNG resource embedded in a binary file with the ID IDB_PNG1, and an LPDRAWITEMSTRUCT to draw into (so that means you have the HDC and the rectangle for your target), how do you draw that image onto the screen using StretchDIBits? I've worked with BitBlt and TransparentBlt before, but StretchDIBits seems to work differently, and LoadImage doesn't seem to work with PNG's.

Thank you!

(Note: The language I put is C++, but that's not too important... C, C#, Visual Basic, etc. would be fine; I'm just trying to figure out the steps, not the exact code needed.)

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

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

发布评论

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

评论(2

薄荷港 2024-10-16 16:15:53

我写了一篇 博客文章(关于使用 C++ 显示启动屏幕),其中包含从资源加载 PNG 并将其转换为 HBITMAP 的完整代码示例(使用 WIC)。然后,您可以使用 CreateCompatibleDC、SelectObject 和 BitBlt 将其显示在目标 HDC 中。

虽然我从未尝试过,但如果将资源中的原始字节加载到内存中,并设置具有宽度、高度等的 BITMAPINFOHEADER 结构,则应该能够使用 StretchDIBits 直接显示 PNG,如中所示此 MSDN 示例

C# 和 VB.NET 解决方案将非常不同,因为您可以使用 System.Drawing(GDI+ 的包装器)或 System.Windows.Media.Imaging(在 WPF 应用程序中)来处理图像加载和绘制。

I wrote a blog post (on displaying a splash screen with C++) that contains a full code sample that loads a PNG from a resource and converts it to an HBITMAP (using WIC). You could then use CreateCompatibleDC, SelectObject, and BitBlt to display it in the target HDC.

While I haven't ever tried it, you should be able to use StretchDIBits to display the PNG directly if you load the raw bytes from the resource into memory, and set up a BITMAPINFOHEADER struct with the width, height, etc. as demonstrated in this MSDN sample.

C# and VB.NET solutions would be quite different because you could use System.Drawing (a wrapper for GDI+) or System.Windows.Media.Imaging (in a WPF app) to handle the image loading and drawing.

猫烠⑼条掵仅有一顆心 2024-10-16 16:15:53

我认为位图中的 PNG 支持实际上只供打印机驱动程序使用。对于屏幕显示,您可能需要使用一些代码自行解压缩 PNG 数据,例如 libpng< /a>.

I think the PNG support inside bitmaps is only really for use by printer drivers. For screen display, you will probably have to decompress the PNG data yourself using some code such as libpng.

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