Я хочу вставить изображение в RichTextBox.Я добавляю картинку в кодировке.
Это основной код, добавление изображения jpg:
MemoryStream memoryStream = new MemoryStream();
img.Save(memoryStream,System.Drawing.Imaging.ImageFormat.Jpeg);
byte[] bytes = memoryStream.ToArray();
String width = img.Width.ToString();
String height = img.Height.ToString();
String hexImgStr=BitConverter.ToString(bytes, 0).Replace("-","");
String picStr=@"{\pict\jpegblip\picw"+width+@"\pich"+height+
@"\picwgoal"+width+@"\pichgoal"+height+" "+hexImgStr+"}";
Затем я вставляю «picStr» в документ rtf.Но изображение не видно.Я думал, что "hexImgStr" может быть неправильно.Я также генерирую "hexImgStr" по-другому:
FileStream fs = new FileStream(imgPath,FileMode.Open);
BinaryReader br=new BinaryReader(fs);
//byte[] bytes=new byte[fs.Length];
String hexImgStr="";
for (long i = 0; i < fs.Length; i++)
{
//bytes[i] = br.ReadByte();
hexImgStr +=Convert.ToString(br.ReadByte(),16);
}
Изображение также не видно.Что с ним не так.
Большое спасибо.