sautinsoft.rtftohtml 2024.6.6

dotnet add package sautinsoft.rtftohtml --version 2024.6.6
NuGet\Install-Package sautinsoft.rtftohtml -Version 2024.6.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="sautinsoft.rtftohtml" Version="2024.6.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add sautinsoft.rtftohtml --version 2024.6.6
#r "nuget: sautinsoft.rtftohtml, 2024.6.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install sautinsoft.rtftohtml as a Cake Addin
#addin nuget:?package=sautinsoft.rtftohtml&version=2024.6.6

// Install sautinsoft.rtftohtml as a Cake Tool
#tool nuget:?package=sautinsoft.rtftohtml&version=2024.6.6

Nuget Nuget

.NET SDK to convert RTF, DOCX, Text to HTML

rtf

SautinSoft.RtfToHtml is .NET assembly to convert Text, RTF, DOCX to HTML. Provides your by API to transform Word documents to HTML5, 4.01, 3.2, XHTML with a lot of converting options.

Top Features

System Requirement

  • .NET Framework 4.6.2 - 4.8.
  • .NET 6, .NET 8.
  • Windows, Linux, macOS, Android, iOS.

Getting Started with RTF to HTML .Net

Are you ready to give RTF to HTML .NET a try? Simply execute Install-Package sautinsoft.rtftohtml from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have RTF to HTML .NET and want to upgrade the version, please execute Update-Package sautinsoft.rtftohtml to get the latest version.

Convert RTF to HTML

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

Convert DOCX to HTML

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

Convert Txt to HTML

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

Resources

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2024.6.6 94 6/6/2024
2023.10.18 4,182 10/18/2023
2023.9.25 1,098 9/27/2023
2023.5.30 3,423 5/30/2023
8.1.2.2 1,831 2/2/2023
8.0.10.19 3,764 10/26/2022
7.7.4.17 14,579 4/15/2022
7.6.6.17 13,594 6/16/2021
7.5.1.27 3,178 1/27/2021
7.4.5.25 5,966 5/26/2020
7.3.1.27 16,858 1/31/2020
7.1.10.26 1,541 11/19/2019
7.0.7.4 6,936 7/7/2019
6.1.12.20 25,373 1/6/2017

What's new in the version RTF to HTML .Net 2024.6.6:
+ Subsetting Fonts:
Subsetting is the practice of creating a “subset” of a font—a file that contains a custom (and usually limited) collection of glyphs. We've done a lot of work to improve the subsetting of fonts.
+ Word Reader:
Previously, a file consisting of a couple of words could take up several megabytes due to the presence of built-in (embedded) fonts. We have optimized and reduced the size of the embedded fonts without losing quality.
Improved model for reverse conversion of HTML to RTF to HTML (vice versa).
Issues with the correct display of table borders, numbered lists, and indent alignment have been resolved.
+ Linux, Docker, Cloud solutions:
A bug with reading system fonts has been fixed.
Selection of font analogues and equivalent replacements.
Your results will be as similar as possible when converting in different environments: Windows, Unix, MacOs, Linux, etc.
+ Images quality: Fixed conversion of images to Jpeg format, the weight of the output file has been reduced.
+ Images speed: We have increased the speed of working with images by optimizing the SkiaSharp-engine.
+ Fixed the minor issues, found and sent to us from our customers. Therefore the component became more error-free.