我需要一些关于此异常的帮助:我正在尝试解析多部分格式数据并从中提取图像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));
有什么想法吗?