0

我需要一些帮助来解决这个异常:我正在尝试解析多部分格式数据并从中提取图像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));

任何想法?

4

0 回答 0