How to convert Text to HTML in C# and .NET

RTF to HTML .Net

.Net assembly to convert Text, RTF and DOCX to HTML 3.2, 4.01, XHTML and HTML5 in .Net and C#.
How to write a function to convert Text to HTML in C# for 15 minutes?

RTF to HTML .Net

How to convert Text to HTML in C# and .NET
How to write a function to convert Text to HTML in C# for 15 minutes?

Introduction

Imagine, that in 15 minutes after reading this text you will be able to provide API for your application to convert Text documents into HTML, using C# or VB.NET.

 string inpFile = @"..\..\..\..\example.txt";
            string outfile = Path.GetFullPath("Result.html");
            
            RtfToHtml r = new RtfToHtml();
            r.Convert(inpFile, outfile, new HtmlFixedSaveOptions() {Title = "SautinSoft Example." });

The library gives you a full set of API to convert Text to HTML. Furthermore, during conversion to HTML you may adjust following:

  • Various output format: HTML 3.2, HTML 4.01, HTML 5, XHTML.
  • Generating output document in plain HTML 3.2 without CSS.
  • Save CSS data between tags <style>...</style> or as inline styles <tag style="...">.
  • Specify encoding of output HTML.
  • Set up document Title; create only the part of HTML between <body>...</body> tags.
  • Set up a common font, size and color for a whole document.
  • Detect hyperlinks from text and make them real hyperlinks.
  • Specify the table borders visibility.

Download

To see this functionality firsthand, download the freshest «RTF to HTML .Net» with code examples, 16.7 Mb.

Limitations

RTF to HTML .Net The limitations of the free version are: The trial notice "Created by unlicensed version of RTF to HTML .Net" and the random addition of the word "TRIAL".


Some examples to convert Text to HTML in C# and VB.NET

1. Convert Text file to HTML file in C#:

static void Main(string[] args)
        {
            ConvertTextToHtml();
        }
        /// <summary>
        /// Converts Text file to HTML file.
        /// </summary>
        static void ConvertTextToHtml()
        {
            string inpFile = @"..\..\..\..\example.txt";
            string outfile = Path.GetFullPath("Result.html");
            
            RtfToHtml r = new RtfToHtml();
            r.Convert(inpFile, outfile, new HtmlFixedSaveOptions() {Title = "SautinSoft Example." });

            // Open the result for demonstration purposes.
            System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outfile) { UseShellExecute = true });
        }
2. Convert Text to HTML using MemoryStream objects using C#.
RtfToHtml r = new RtfToHtml();

            using (MemoryStream inpMS = new MemoryStream(File.ReadAllBytes(inpFile)))
            {
                using (MemoryStream outMS = new MemoryStream())
                {
                    r.Convert(inpMS, outMS, new HtmlFixedSaveOptions() { Title = "SautinSoft Example." });
                    // Save the result from MemoryStream to the file to show the result.
                    File.WriteAllBytes(outfile, outMS.ToArray());
                }
            }
3. Convert Text to HTML in C#; Specify CSS Stream.
RtfToHtml r = new RtfToHtml();

            // Create a separate file to store css.
            FileStream fs = new FileStream(cssFile, FileMode.Create);

            HtmlFlowingSaveOptions opt = new HtmlFlowingSaveOptions()
            {
                CssStream = fs,
                KeepCssStreamOpen = false,
                CssExportMode = CssExportMode.External,
                CssFileName = cssFile,
                Title = "Working with CSS."
            };

            try
            {
                r.Convert(inpFile, outFile, opt);
            }
            catch (Exception ex)
            {
                Console.WriteLine($"Conversion failed! {ex.Message}");
            }

Requirements and Technical Information

«RTF to HTML .Net» can be used on 32 and 64-bits platforms with .NET Framework 4.5 and higher, .NET Core 2.0 and higher. The component doesn't require Internet Explorer, Microsoft Office or any other software. It's absolutely standalone and independent library.

The DOCX conversion works starting from .NET Framework 4.5 and higher, .NET Core 2.0 and higher. If you are looking for a standalone C# library to create and parse Word documents, try our Document .Net.

Our product is compatible with all .NET languages and supports all Operating Systems where .NET Framework can be used. Note that «RTF to HTML .Net» is entirely written in managed C#.

.Net Framework 4.0 and higher and .Net Core 2.0 and higher

.NET Framework 4.5, 4.6.1 and higher.

.NET Standard 2.0

.NET Core, .NET 5.0 and higher.


Multi-platform component, runs on:


Our component has proven itself on cloud platforms and services:

  • Microsoft Azure
  • Amazon Web Services (AWS)
  • Google Cloud Platform
  • SharePoint
  • Docker
  • Xamarin Forms
  • etc.