ArgumentException:参数在System.Drawing.Image.FromStream中无效

时间:2013-04-23 15:25:59

标签: c# .net wcf bytearray

我需要一些关于此异常的帮助:我正在尝试解析多部分格式数据并从中提取图像byte[]

int startIndex = contentTypeMatch.Index + 
                 contentTypeMatch.Length + "\r\n\r\n".Length;

string contn = s.Substring(startIndex).TrimEnd(new char[] { '\r', '\n' }).Trim();
byte[] test = encoding.GetBytes(contn);
System.Drawing.Image img = 
    System.Drawing.Image.FromStream(new MemoryStream(test));

有什么想法吗?

0 个答案:

没有答案