Convert RTF to PDF and save the document into database using .NET

Hi,


I am trying to bring this product into my client's environment. After a small demo, client asked me following questions

1. Can we convert RTF files to PDF
2. Will this work on all browsers ? including mobiles
3. My client streams files on the databse, so instead of soft copy can we directly render streams out the browser ? if so can we do other operations? mainly concatenation of multiple files, stamping and converting ?
4. More importantly, is there any limitation on file size? let us say we have 2000 pages of document, will this tool works with out issue ? have you tested it ? whats the max number of pages we can deal here ?

Thank you
Venu.

This message was posted using Email2Forum by Merit.

Hi Venu,

Thanks for your query.

  1. You can convert RTF document to Pdf by using Aspose.Words.

Document doc = new Aspose.Words.Document(MyDir + “In.rtf”);
doc.Save(MyDir + “AsposeOut.pdf”);

  1. Yes, the output Pdf works for all browsers. It would be great if you please explain your question about mobiles in detail.

  2. Please read following documentation link to load and save document to database.
    https://docs.aspose.com/words/net/save-a-document/

  3. There is no limit of pages in the document. You can create a document with any number of pages by using Aspose.Words. The only limit is amount of RAM on your side.

Hope this answers your query. Please let us know if you have any more queries.