我如何使用 GDI+保存 HBITMAP
我想在 GDI+ 的帮助下将创建的图像保存为 PNG 或 JPEG 文件,但我找不到方法来做到这一点。似乎没有办法创建一个非基于文件的图像并用 HBITMAP 中的位块填充它。
或者我错过了什么?
I want to save my created image as a PNG or JPEG file with the help of GDI+ but i can't find a way to do this. Seems that there is no way to create a non file based Image and fill it with a bitblit from the HBITMAP.
Or do i miss something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Bitmap::FromHBITMAP() 方法。然后只需 Save() 即可。
Use the Bitmap::FromHBITMAP() method. Then just Save() it.