GDI Image::Save 返回 Win32Error

发布于 2024-08-09 20:05:09 字数 178 浏览 2 评论 0原文

我正在使用 GDI Image::Save Method 将图像保存到我的文件中 应用。 我在少数情况下收到 Win32Error (7) 状态错误 与 Vista 64 位。在 vista 32 位上运行良好。 而且这个问题是随机出现的。

您能否建议如何解决问题

提前

致谢 苏比·雷迪

I am using GDI Image::Save Method to save the images to the file in my
Application.
I am getting Win32Error (7) status error in few instances
with Vista 64 bit. It is working fine with vista 32 bits.
and also this problem is coming randomly .

Can you please suggest how to solve the problem

Thanks in advance

Regards
Subbi Reddy

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

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

发布评论

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

评论(1

醉城メ夜风 2024-08-16 20:05:09

发生这种情况的一种可能情况是图像的基础流已关闭:

using ( var fs = new FileStream( filename, FileMode.Open ) ) 
    bmp = (Bitmap)Image.FromStream( fs );

如果您现在尝试保存 bmp,则可能会发生此错误。当然,您的问题可能完全不同。

但是,您可以尝试保存图像的副本,而不是直接保存图像,如下所示:

using ( var tempBitmap = new Bimap( oldBitmap ) ) 
    tempBitmap.Save( ...... );

One possible case when this is happening is when the image's underlying stream has been closed:

using ( var fs = new FileStream( filename, FileMode.Open ) ) 
    bmp = (Bitmap)Image.FromStream( fs );

If you now try to save bmp this error can occur. Your problem may, of course, be something completely different.

You could, however, try to save a copy of your image instead of saving the image directly, like so:

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