通用 GDI+绘制 GIF 文件时出错

发布于 2024-11-23 16:16:44 字数 294 浏览 1 评论 0原文

在执行下面的代码时,我收到“Generic GDI+”错误

byte[] imageByte = HexToByteArray(hexaCode); 
MemoryStream memoryStream = new MemoryStream(imageByte);
System.Drawing.Image image = System.Drawing.Image.FromStream(memoryStream);

,并且该错误发生在第三步。

有谁知道原因吗?

提前致谢。

while executing the below code, I am getting "Generic GDI+" error

byte[] imageByte = HexToByteArray(hexaCode); 
MemoryStream memoryStream = new MemoryStream(imageByte);
System.Drawing.Image image = System.Drawing.Image.FromStream(memoryStream);

and the error is occuring on the third step.

Do any one know the reason?

Thanks in Advance.

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

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

发布评论

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

评论(1

清风无影 2024-11-30 16:16:44

您的流不包含有效的图像。

Your stream does not contain a valid image.

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