I have tried the fast rendering and optimiation options but they do not help. I have modified the doc as much as I can in order to share it. Please see attached.
The code I am using is pulled form the essential studio sample:
string doc = "File path";
WordDocument wordDocument = new WordDocument(doc);
//Initializes the ChartToImageConverter for converting charts during Word to pdf conversion
wordDocument.ChartToImageConverter = new ChartToImageConverter();
//Creates an instance of the DocToPDFConverter
DocToPDFConverter converter = new DocToPDFConverter();
converter.Settings.AutoDetectComplexScript = true;
converter.Settings.EnableFastRendering = true;
converter.Settings.OptimizeIdenticalImages = true;
//Converts Word document into PDF document
PdfDocument pdfDocument = converter.ConvertToPDF(wordDocument);
//Saves the PDF file
pdfDocument.Save("New Path");
//Closes the instance of document objects
pdfDocument.Close(true);
wordDocument.Close();
Attachment:
Sample_Word_Doc__Cant_convert_52184946.zip