Saravanan
Saravanan

Reputation: 11592

how to convert open xml representation of word document into RTF format using c#.net 4.0?

I want to convert Open xml representation of Word Documents in to RTF Format using C#.net.Please Guide me to Get out of this problem...

Upvotes: 2

Views: 1958

Answers (1)

Rune Grimstad
Rune Grimstad

Reputation: 36300

Old question, but maybe my reply can be useful for someone.

The Open XML sdk doesn't allow you to convert to other document formats itself so you will have to use an other option to do this.

The obvious alternative is to use Word itself. Word allows you to save a document as RTF and you can easily automate it using C#.

If you need an option that does not include Word, maybe you need to run server-side, then you can either use the Word Automation Services (but then you need Sharepoint I think) or you can use third-party options like Aspose.

Upvotes: 6

Related Questions