我正在尝试将嵌入的图像放在富文本框中并将其转换为实际的图像(.jpg,.png)并不重要。
Sofar我设法从我的富文本框中将图像作为字符串获取。
我坚持将富文本字符串(来自下面代码的imageData)转换为实际图像。
string imageData = ExtractImg(rtfText);
string ExtractImg(string s)
{
int startIndex = s.IndexOf("{\\pict\\");
int endIndex = s.IndexOf("}", startIndex);
return s.Substring(startIndex, (endIndex + 1) - startIndex);
}