GDI 中发生一般错误加载时

发布于 2024-10-22 06:01:00 字数 261 浏览 3 评论 0原文

我在从 File() 加载图像时收到“GDI+ 中发生一般错误”。 这发生在一些图像上。

我尝试了很多方法来修复这个错误,但都无济于事。

通过谷歌我发现很多人在保存文件时遇到这个问题。当我尝试加载它时我得到它。

我所做的就是:

图像= System.Drawing.Image.FromFile(@"C:\pic.jpeg");

从文件加载图像时有人修复了此错误吗?

im receiving "A generic error occurred in GDI+" while loading an image FromFile().
this happens on a few images.

I tried numerous of things to fix this error, but to no avail.

via google i found out a lot of people having this issue when they save the file. i get it when i try to load it.

all i do is:

image =
System.Drawing.Image.FromFile(@"C:\pic.jpeg");

anyone fixed this error when loading an image from file?

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

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

发布评论

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

评论(1

瀟灑尐姊 2024-10-29 06:01:00

您遇到的问题是该文件已打开。也许您通过将其放入 PictureBox 中来打开它,或者您已经打开了它?
您应该查看是否使用 Unlocker 打开它。
当文件已在位图中打开时,我收到此错误。请务必在使用每个 Bitmap 对象后Dispose

The problem you're encountering is that the file is already open. Maybe you opened it by putting it into a PictureBox, or you opened it already?
You should see if its opened by using Unlocker.
I got this error when having the file open in a Bitmap already. Be sure to Dispose every Bitmap object after using it.

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