I am now evaluating ASPOSE.WORDs for java to convert MS doc/RTF files to pdf. The src code is as follows.
License license = new License();
license.setLicense(new FileInputStream(
new File(“Aspose.Words.lic”)));
Document doc = new Document(“files/word.doc”);
doc.save(“files/word.pdf”);
I find that the layout of the pdf file is not the same as the source word file. The sample files are attached. Is there any solution to this case?
Thank you very much!