I have downloaded the evaluation version and implemented a small service to convert .doc, .docx and .rtf files to pdf.
There seem to be quite a lot of differences between the original document (Word), the generated pdf and a pdf that was saved directly from Word. Indents/Tabs and the font settings / page breaks don't seem to be converted incorrectly. Trying to load a rtf file for conversion throws an exception.
My conversion code is fairly simple:
document = new Document();
document.LoadFromFile(sFileIn);
document.SaveToFile(sFileOut, FileFormat.PDF);
document.Close();
document = null;
I've attached a zip file with the originals and converted pdf files. Are there any settings that I could use to archive a closer match?
Thanks for your help