Hi ,
We already have a product that converts word documents to PDF however I am looking forward for replacement of this product with Aspose.words. I have the following question:
How does aspose process word to convert into PDF format internally? What if there is Virus in the uploaded document? Does it still process such documents or is there some kind of check that is being done to find the authenticity of the document internally?
Thanks,
Som.
Hi Soumya,
Thanks for your query. The Aspose.Words mimics the MS Word behavior upon converting documents to PDF. Please read following documentation link for your kind reference.
http://www.aspose.com/docs/display/wordsjava/How+to++Convert+a+Document+to+PDF
Please use the latest version of Aspose.Words for Java and let us know if you have any more queries.
Hi
Soumya,
Thanks for the quick reply. I also had another question. Does Aspose.words for java support conversion of word 97-2003 docs as well? I assumethat Aspose.words cannot convert ‘.pages’ to PDF however do you have any product in the aspose family which supports this conversion for MAC users.
Thanks for your query. Yes, Aspose.Words for Java support conversion of Word 97-2003 documents. Please read the load and save formats from following links.
Document doc = new Document(MyDir + "in.docx");
doc.save(MyDir + "AsposeOut.doc", SaveFormat.DOC);
doc.Save(MyDir + "AsposeOut.pdf", SaveFormat.PDF);
Please let us know if you have any more queries.