Hi,
we are developing a program where we need to open a rtf document, replace some text and finally save the document in pdf.
I'm currently evaluating Spire.doc for this purpose and I have some questions about the formats that are supported.
My code could ideally be as simple as :
Dim doc As New Spire.Doc.Document(myRtfFileName)
doc.Replace(myTagText, myReplacementText, False, True)
doc.SaveToFile(myPDFFileName)
But when trying to run this code we find out that
- The rtf format is not supported when opening the file.
- The pdf format is not supported when saving the file.
I looked for a solution in this forum but I didn't find any. Could you tell me if there is a way to achieve this with Spire.doc or do you have some other product(s) that could help us?
Thank you in advance