Aspose.HTML 22.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.HTML --version 22.1.0
NuGet\Install-Package Aspose.HTML -Version 22.1.0
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="Aspose.HTML" Version="22.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.HTML --version 22.1.0
#r "nuget: Aspose.HTML, 22.1.0"
#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 Aspose.HTML as a Cake Addin
#addin nuget:?package=Aspose.HTML&version=22.1.0

// Install Aspose.HTML as a Cake Tool
#tool nuget:?package=Aspose.HTML&version=22.1.0

Binary to Text Support HTML Parsing .NET API

Version 22.1.0 Nuget

banner

Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License

This .NET HTML API assists developers to write, read, modify, navigate and convert (X)HTML documents from within .NET applications.

Aspose.HTML for .NET API works as a headless browser that allows you to create or open existing HTML documents from various sources in order to perform manipulation operations such as remove and replace HTML nodes, save HTML documents, extract CSS from HTML, configure a document sandbox and more. You may navigate HTML documents by using various methods, such as, element traversal, document traversal, XPath queries, and CSS selector queries as well as manipulate HTML DOM via JavaScript, convert HTML file to images or fixed-layout formats, and convert (X)HTML and EPUB files to other file formats.

It helps you create, modify, extract, copy, delete and replace HTML document content, extract CSS from HTML, configure a document sandbox; load, read, and manage SVG files; render MHTML and EPUB documents to supported output file formats, and perform asynchronous operations.

This library supports parsing of HTML5, CSS3, SVG and HTML Canvas to construct a Document Object Model (DOM) based on the WHATWG DOM Standard. Insert, remove, and edit the nodes. You can navigate HTML documents by using various methods, such as element traversal, document traversal, XPath queries, and CSS selector queries as well as manipulate HTML DOM via JavaScript.

Aspose.HTML for .NET offers comprehensive format conversion support using which your applications can convert from HTML, SVG, EPUB, MHTML, and Markdown to various supported formats. You can also populate an HTML template from XML or JSON data sources. Aspose.HTML can easily work with large and complex HTML-documents.

The classes and properties of Aspose.HTML for .NET API have similar names as that of W3C HTML specification.

HTML Processing API Features

  • Convert HTML to many popular formats including PDF, XPS and images.
  • Load & convert SVG & EPUB to XPS, PDF and images.
  • Navigate through document either by NodeIterator or TreeWalker.
  • Control the timeout of the rendering process.
  • MutationObserver to watch over DOM modifications.
  • Populate HTML document with external data (XML & JSON).
  • Support of single (PDF, XPS) or multiple (image formats) output file streams.
  • Extract CSS styling information.
  • Configuring Sandbox for the environment independent of the execution machine.

What's new in v22.1.0

Improved Conversion to MHTML Format

By the addition of the binary to text “quoted-printable” encoding (or QP encoding) support then document conversion to MHTML format has been improved. The following API sample code demonstrates how to convert HTML to MHTML using C# code:

// For complete examples and data files, please go to https://github.com/aspose-html/Aspose.HTML-for-.NET
// The path to the documents directory
string dataDir = RunExamples.GetDataDir_Data();
// Source HTML Document 
HTMLDocument htmlDocument = new HTMLDocument(dataDir + "input.html");
// Initialize MHTMLSaveOptions
MHTMLSaveOptions options = new MHTMLSaveOptions();
// Set the resource handling rules
options.ResourceHandlingOptions.MaxHandlingDepth = 1;
// Output file path 
string outputPDF = dataDir + "HTMLtoMHTML_Output.mht";
// Convert HTML to MHTML
Converter.ConvertHTML(htmlDocument, options, outputPDF);

Accurate SVG Filter Size Calculation

Increased the accuracy of SVG filter size calculation.

Compliant CSS and HTML Parsing Algorithms

Updated the CSS and HTML parsing algorithms as per the latest documentation.

Better Handling of Non Breaking Spaces in Converted PDF

Previously in some instances the non breaking spaces were being converted to invalid characters in output PDF. Now this issue has been resolved.

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.HTML for .NET 22.1 Release Notes.

Read & Write Web Formats

Web: HTML, XHTML, MHTML
Other: SVG, MD (Markdown)

Save HTML As

Fixed Layout: PDF, XPS
Images: TIFF, JPEG, PNG, BMP, GIF

Read Formats

EPUB

Platform Independence

Aspose.HTML for .NET is written completely in C# and can be used to build any type of 32-bit or 64-bit .NET application including ASP.NET, WCF, WinForms & .NET Core. Development platforms include all flavors of Windows, Linux, and Mac OS X x64 (10.12+).

Getting Started

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

Convert HTML to GIT-based Markdown (MD) Format

// For complete examples and data files, please go to https://github.com/aspose-html/Aspose.HTML-for-.NET

// Prepare an HTML code and save it to the file.
var code = "<h1>Header 1</h1>" +
           "<h2>Header 2</h2>" +
           "<p>Hello World!!</p>";
System.IO.File.WriteAllText("document.html", code);

// Call ConvertHTML method to convert HTML to Markdown.
Aspose.Html.Converters.Converter.ConvertHTML("document.html", Aspose.Html.Saving.MarkdownSaveOptions.Git, "output.md");

Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net35 is compatible.  net35-client is compatible.  net40 is compatible.  net40-client is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Aspose.HTML:

Package Downloads
Aspose.Total

Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications.

CHOCore.Tools

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
24.3.0 1,159 3/18/2024
24.2.0 3,918 2/27/2024
24.1.0 27,306 1/11/2024
23.12.0 9,185 12/5/2023
23.11.0 21,803 11/3/2023
23.10.0 22,924 10/6/2023
23.9.0 31,180 9/5/2023
23.8.1 83,851 8/11/2023
23.7.0 18,040 7/12/2023
23.6.0 18,219 6/29/2023
23.5.0 32,182 5/3/2023
23.4.0 17,834 4/4/2023
23.3.0 56,836 3/10/2023
23.2.0 51,217 2/1/2023
23.1.0 42,144 1/20/2023
22.11.0 95,667 11/22/2022
22.10.0 31,173 10/28/2022
22.9.0 23,894 10/1/2022
22.8.0 62,380 8/19/2022
22.7.0 16,407 7/30/2022
22.6.0 19,349 6/28/2022
22.5.0 56,280 5/19/2022
22.4.0 20,806 4/19/2022
22.3.0 134,819 3/7/2022
22.2.0 29,093 2/11/2022
22.1.0 23,939 1/13/2022
21.12.0 16,981 12/8/2021
21.11.0 28,660 11/1/2021
21.10.0 10,797 10/9/2021
21.9.0 32,141 9/2/2021
21.8.0 48,067 8/4/2021
21.7.0 41,493 7/1/2021
21.6.0 10,710 6/9/2021
21.5.0 11,766 5/20/2021
21.4.0 19,192 5/1/2021
21.3.0 27,765 3/10/2021
21.2.0 75,309 2/4/2021
21.1.0 270,576 1/14/2021
20.12.0 24,691 12/4/2020
20.11.0 33,601 11/3/2020
20.9.0 20,443 9/30/2020
20.8.0 22,420 8/31/2020
20.7.0 10,030 7/28/2020
20.6.0 8,035 6/30/2020
20.5.0 35,396 5/20/2020
20.4.0 34,411 4/3/2020
20.3.0 94,889 3/12/2020
20.2.0 13,096 2/9/2020
20.1.0 6,595 1/14/2020
19.12.0 13,743 12/4/2019
19.11.0 10,088 11/11/2019
19.10.0 14,643 10/8/2019
19.9.0 17,913 9/6/2019
19.8.0 7,993 8/7/2019
19.7.0 8,552 7/8/2019
19.6.0 5,663 6/10/2019
19.5.0 14,844 5/9/2019
19.4.0 9,892 4/5/2019
19.3.0 33,303 3/5/2019
19.2.0 5,368 2/6/2019
19.1.0 3,414 1/9/2019
18.12.0 10,355 12/7/2018
18.11.0 11,489 11/6/2018
18.10.0 2,854 10/5/2018
18.9.0 12,182 9/5/2018
18.8.0 2,964 8/7/2018
18.7.0 2,848 7/5/2018
18.6.0 2,827 6/6/2018
18.5.0 5,289 5/2/2018
18.4.0 2,795 4/6/2018
18.3.0 13,254 3/6/2018
18.2.0 4,402 2/7/2018
18.1.0 13,547 1/11/2018
17.12.0 2,285 12/4/2017
17.11.0 2,193 11/9/2017
17.10.0 2,081 10/9/2017
17.9.0 2,250 9/8/2017
17.8.0 2,192 8/10/2017
17.7.0 8,840 7/14/2017