Programmatically adding Images to RTF Document

try these links Rich Text Format (RTF) Specification, version 1.6 How can I insert an image into a RichTextBox? Insert Image into rtf document you must change “picwgoa” to “picwgoal” and “pichgoa” to “pichgoal” string mpic = @”{\pict\pngblip\picw” + img.Width.ToString() + @”\pich” + img.Height.ToString() + @”\picwgoal” + width.ToString() + @”\pichgoal” + height.ToString() + @”\bin ” … Read more