Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best solution for converting RichTextFormat info to HTML in C#?

Tags:

html

c#

rtf

What is the best solution for converting RichTextFormat info to HTML in C#?

I know there are libraries out there that do this, and I was curious to see if you guys had any advice as to which ones are the better ones.

Thanks, Jeff

like image 209
Yttrium Avatar asked Feb 06 '09 00:02

Yttrium


1 Answers

I recently used a RTF to HTML conRTverter that worked great, called DocFrac.

It can be used with a GUI to convert files, but it also is a DLL.

I converted over 400 RTF files to HTML in a few minutes so performance is good too. I used the GUI so I don't have the details on the DLL. According to the site the DLL works with .NET however.

DocFrac at SourceForge

Update: fixed link, because www.docfrac.net doesn't exist anymore.

like image 133
Tony Peterson Avatar answered Oct 16 '22 02:10

Tony Peterson