通用 GDI+绘制 GIF 文件时出错
在执行下面的代码时,我收到“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的流不包含有效的图像。
Your stream does not contain a valid image.