Aspose.Words.Shaping.HarfBuzz 21.8.0

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

// Install Aspose.Words.Shaping.HarfBuzz as a Cake Tool
#tool nuget:?package=Aspose.Words.Shaping.HarfBuzz&version=21.8.0

HarfBuzz Shaping Engine Aspose.Words .NET API

Version 21.8 Nuget

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

Try our free online Apps demonstrating some of the most popular Aspose.Words functionality.

Aspose.Words for .NET is a powerful on-premise class library that can be used for numerous document processing tasks. It enables developers to enhance their own applications with features such as generating, modifying, converting, rendering, and printing documents, without relying on third-party applications, for example, Microsoft Word, or automation.

Word API Features

The following are some popular features of Aspose.Words for .NET:

  • Aspose.Words can be used to develop applications for a vast range of operating systems such as Windows or Linux & Mac OS and platforms such as Windows Azure, Xamarin.Android, or Xamarin.iOS & Xamarin.Mac.
  • Comprehensive document import and export with 35+ supported file formats. This allows users to convert documents from one popular format to another, for example, from DOCX into PDF or Markdown, or from PDF into various Word formats.
  • Programmatic access to the formatting properties of all document elements. For example, using Aspose.Words users can split a document into parts or compare two documents.
  • High fidelity rendering of document pages. For example, if it is needed to render a document as in Microsoft Word, Aspose.Words will successfully cope with this task.
  • Ability to print a document programmatically using Aspose.Words and the XpsPrint API or via dialog boxes.
  • Generate reports with Mail Merge, which allows filling in merge templates with data from various sources to create merged documents.
  • LINQ Reporting Engine to fetch data from databases, XML, JSON, OData, external documents, and much more.

Read & Write Document Formats

Microsoft Word: DOC, DOT, DOCX, DOTX, DOTM, FlatOpc, FlatOpcMacroEnabled, FlatOpcTemplate, FlatOpcTemplateMacroEnabled, RTF, WordML
OpenDocument: ODT, OTT
Web: HTML, MHTML
Markdown: MD
Fixed Layout: PDF
Text: TXT

Read Document Formats

Microsoft Word: DocPreWord60
eBook: MOBI, CHM

Save Document As

Fixed Layout: XPS, OpenXps
PostScript: PS
Printer: PCL
eBook: EPUB
Markup: XamlFixed, HtmlFixed, XamlFlow (Beta), XamlFlowPack (Beta)
Image: SVG, TIFF, PNG, BMP, JPEG, GIF
Metafile: EMF

Platform Independence

Aspose.Words for .NET API can be used to develop applications for a vast range of operating systems, such as Windows, Linux and Mac OS, and platforms. You can build both 32-bit and 64-bit applications, including ASP.NET, WCF, and WinForms. Aspose.Words for .NET can also be used via COM Interop from ASP, PHP, Perl, and Python.

You can also build applications with Mono, as well as on Windows Azure, Microsoft SharePoint, Microsoft Silverlight, Xamarin.Android, Xamarin.iOS, and Xamarin.Mac.

Get Started

Ready to give Aspose.Words for .NET a try?

Simply run Install-Package Aspose.Words from the Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Words for .NET and want to upgrade the version, please run Update-Package Aspose.Words to get the latest version.

You can run the following snippets in your environment to see how Aspose.Words works, or check out the GitHub Repository for other common use cases.

Using C# to Create a DOCX File from Scratch

Aspose.Words for .NET allows you to create a new blank document and add content to this document.

// Create a blank document.
Document doc = new Document();

// Use a document builder to add content to the document.
DocumentBuilder builder = new DocumentBuilder(doc);
// Write a new paragraph in the document with the text "Hello World!".
builder.Writeln("Hello World!");

// Save the document in DOCX format. Save format is automatically determined from the file extension.
doc.Save(dir + "output.docx");

Using C# to Convert a Word Document to HTML

Aspose.Words for .NET also allows you to convert Microsoft Word formats to PDF, XPS, Markdown, HTML, JPEG, TIFF, and other file formats. The following snippet demonstrates the conversion from DOCX to HTML:

// Load the document from the disc.
Document doc = new Document(dir + "TestDocument.docx");

// Save the document to HTML format.
doc.Save(dir + "output.html");

Using C# to Import PDF and Save as a DOCX File

In addition, you can import a PDF document into your .NET application and export it as a DOCX format file without the need to install Microsoft Word:

// Load the PDF document from the disc.
Document doc = new Document(dir + "TestDocument.pdf");

// Save the document to DOCX format.
doc.Save(dir + "output.docx");

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 was computed.  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

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Aspose.Words.Shaping.HarfBuzz:

Repository Stars
aspose-words/Aspose.Words-for-.NET
Aspose.Words for .NET examples, plugins and showcases
Version Downloads Last updated
24.3.0 920 3/6/2024
24.2.0 1,289 2/6/2024
24.1.0 1,444 12/29/2023
23.12.0 1,591 12/6/2023
23.11.0 3,536 11/7/2023
23.10.0 1,261 10/6/2023
23.9.0 2,517 9/5/2023
23.8.0 1,609 8/7/2023
23.7.0 2,465 7/10/2023
23.6.0 4,501 6/6/2023
23.5.0 5,505 5/6/2023
23.4.0 1,377 4/5/2023
23.3.0 5,053 3/6/2023
23.2.0 2,044 2/3/2023
23.1.0 6,107 1/6/2023
22.12.0 1,906 12/2/2022
22.11.0 1,615 11/3/2022
22.10.0 2,137 10/6/2022
22.9.0 1,845 9/5/2022
22.8.0 1,241 8/3/2022
22.7.0 1,227 7/5/2022
22.6.0 12,712 6/4/2022
22.5.0 5,528 5/4/2022
22.4.0 1,286 4/2/2022
22.3.0 3,285 2/28/2022
22.2.0 5,513 2/2/2022
22.1.0 741 12/30/2021
21.12.0 3,476 12/8/2021
21.11.0 698 11/8/2021
21.10.0 9,335 10/7/2021
21.9.0 2,077 9/7/2021
21.8.0 1,040 8/4/2021
21.7.0 28,016 7/2/2021
21.6.0 1,499 6/3/2021
21.5.0 3,025 5/5/2021
21.4.0 774 4/2/2021
21.3.0 21,690 3/5/2021
21.2.0 6,003 2/3/2021
21.1.0 473 12/30/2020
20.12.0 632 12/7/2020
20.11.0 856 11/9/2020
20.10.0 952 10/7/2020
20.9.0 1,847 9/4/2020
20.8.0 1,581 8/4/2020
20.7.0 669 7/3/2020
20.6.0 716 6/3/2020
20.5.0 682 5/5/2020
20.4.0 689 4/3/2020
20.3.0 1,103 3/4/2020
20.2.0 831 2/4/2020
20.1.0 4,634 12/30/2019
19.12.0 690 12/9/2019
19.11.0 645 11/7/2019
19.10.0 586 10/8/2019
19.9.0 1,055 9/9/2019
19.8.0 573 9/2/2019
19.7.0 1,825 7/5/2019