Add support for INCLUDEPICTURE fields. Such fields should work with nested MERGEFIELD, as this is common scenario. Workaround: Manually insert images over specific placeholderRadFlowDocument document =newRadFlowDocument();RadFlowDocumentEditor editor =newRadFlowDocumentEditor(document);editor.InsertText("1");editor.InsertText("EXAMPLE_IMAGE");editor.InsertText("2");foreach(var runineditor.Document.EnumerateChildrenOfType<Run>().ToArray()){if(run.Text =="EXAMPLE_IMAGE"){Paragraph paragraph = run.Paragraph;intindexOfCurrentRun = paragraph.Inlines.IndexOf(run);paragraph.Inlines.RemoveAt(indexOfCurrentRun);ImageInline imageInline =newImageInline(document);imageInline.Image.ImageSource = newTelerik.Windows.Documents.Media.ImageSource(imageData,"png");paragraph.Inlines.Insert(indexOfCurrentRun, imageInline);}}