Hi,
I'm testing out the PDF libraries using 16.1460.0.37.
I've attached a zip file that contains a .docx and a .pdf file.
When I convert the Word docx, as per the code pasted below, I get the resulting PDF file.
The docx file was created from a "template" and the values were added in using Microsoft's Open Office XML libraries.
But, other than that, is there any reason, the PDF shouldn't match more closely to the originating docx file?
Thanks for any guidance,
Mark Atkinson
try
{
DocToPDFConverter converter = new DocToPDFConverter();
PdfDocument pdfDoc = converter.ConvertToPDF(wordDocumentPath);
pdfDoc.Save(pdfDocumentPath);
return true;
}
catch (Exception e)
{
return false;
}
Attachment:
Files_4adf1e0a.zip