Insert image into document from URL does not work using C#

Hi there,

Thanks for your inquiry. I would suggest you please upgrade to the latest version (v14.12.0) from here and let us know how it goes on your side.

In your case, I suggest you please use complete path in src property of img tag. If you do not want to use complete path for img tag, please use the following code example to load the html string into Aspose.Words DOM and insert this into your main document. Please check following code example for your kind reference and get the InsertDocument code from here:
How to Insert a Document into another Document

LoadOptions loadOptions = new LoadOptions();
loadOptions.BaseUri = MyDir;
loadOptions.LoadFormat = LoadFormat.Html;
String html = "xyz";
// Get the bytes from this string and load them into a new MemoryStream object.
MemoryStream stream = new MemoryStream(Encoding.UTF8.GetBytes(html));
// Pass this MemoryStream object to be loaded into a new Document object.
Document htmldoc = new Document(stream, loadOptions);
Document doc = new Document(MyDir + "in.docx");
DocumentBuilder builder = new DocumentBuilder(doc);
builder.MoveToDocumentEnd();
InsertDocument(builder.CurrentParagraph, htmldoc);
doc.Save(MyDir + "Out.docx");
``