Hi all,
I am trying to convert a docx file to an html page using the following commands:
Document docX = new Document(@"C:\Test.docx");
docX.Save(@"C:\Tmp\Test.html", SaveFormat.Html);
The file is converted, but the images that were in the docx file are missing from the html file,
there isn’t even a reference to it.
what should I do?
Thanks!