Aspose.Words.Shaping.HarfBuzz 24.9.0

dotnet add package Aspose.Words.Shaping.HarfBuzz --version 24.9.0                
NuGet\Install-Package Aspose.Words.Shaping.HarfBuzz -Version 24.9.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="24.9.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 24.9.0                
#r "nuget: Aspose.Words.Shaping.HarfBuzz, 24.9.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=24.9.0

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

Aspose.Words.Shaping.Harfbuzz

Version 24.9.0 Nuget

Aspose.Words.Shaping.Harfbuzz is an add-on for Aspose.Words for .NET, a widely used document processing library. It utilizes the HarfBuzz text shaping engine to improve the rendering of OpenType fonts within documents.

Text shaping is crucial for properly displaying languages that require intricate glyph positioning and substitution, such as Arabic, Thai, Hebrew and others. By integrating HarfBuzz, Aspose.Words.Shaping.Harfbuzz allows Aspose.Words for .NET to provide more accurate text rendering and better support for OpenType fonts, ensuring that documents are displayed correctly across different platforms.

Please note: Aspose.Words.Shaping.Harfbuzz uses P/Invoke technology for invoking unmanaged functions from HarfBuzz.

Functionality

Shaping is an essential process getting text ready for display. Before rendering a Unicode sequence, the code points must be mapped to the corresponding glyphs from the font, and these glyphs need to be correctly positioned relative to each other.

As mentioned above, shaping is critical for displaying languages that require intricate glyph positioning and substitution. But for other languages based on the Latin or Cyrillic scripts, shaping is also necessary.

For correct display of fonts, shaping implements the following features:

How to Enable Text Shaping in Aspose.Words?

Text shaping is a non-trivial task, so Aspose.Words currently offers users to choose the third-party library that best suits their needs when implementing shaping. Aspose.Words provides the ITextShaper and ITextShaperFactory interfaces and expects that a third-party library implements them.

To enable shaping in Aspose.Words, it is needed to initialize the Document.LayoutOptions.TextShaperFactory property with an instance of a class that implements the ITextShaperFactory interface.

How to Aspose.Words.Shaping.Harfbuzz Works?

Aspose.Words.Shaping.Harfbuzz implements the ITextShaper interface, using the harfbuzz.dll library underhood. In fact, Aspose.Words.Shaping.Harfbuzz is just an adapter that allows to use the harfbuzz.dll text shaping library in Aspose.Words.

The package provides class HarfBuzzTextShaperFactory which implements ITextShaperFactory and also BasicTextShaperCache which just wraps up HarfBuzzTextShaperFactory and supports caching and reusing of the loaded font files.

Aspose.Words.Shaping.Harfbuzz exposes a static property Aspose.Words.Shaping.HarfBuzz.HarfBuzzTextShaperFactory.Instance which is an instance of the shaper factory supporting caching. Actually, to use Aspose.Words.Shaping.HarfBuzz you just need to initialize the Document.LayoutOptions.TextShaperFactory property with this static field:

Document.LayoutOptions.TextShaperFactory = Aspose.Words.Shaping.HarfBuzz.HarfBuzzTextShaperFactory.Instance;

Getting Started

Would you like to give it a try? Let us guide you through the process in just a few simple steps. For Windows platforms, no additional efforts are required to install HarfBuzz, as Aspose.Words.Shaping.Harfbuzz already includes the compiled HarfBuzz library.

For other systems, Aspose.Words.Shaping.Harfbuzz relies on the already installed HarfBuzz library. For instance, on many Linux-based systems, HarfBuzz is installed system-wide by default. If not, there is usually a package available for installation through the package manager.

You can run the following code snippets in C# to see how our library works. Also feel free to check out the GitHub Repository for other common use cases.

// Load a Word file from the local drive.
Document doc = new Document("InputWordDocument.docx");

// Initialize TextShaper factory with predefined instance.
doc.LayoutOptions.TextShaperFactory = Aspose.Words.Shaping.HarfBuzz.HarfBuzzTextShaperFactory.Instance;

// Save it to HTML format.
doc.Save("OutputHtmlDocument.pdf");
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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 is compatible.  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 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 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.9.0 294 9/9/2024
24.8.0 1,946 8/7/2024
24.7.0 762 7/8/2024
24.6.0 1,057 6/8/2024
24.5.0 1,848 5/6/2024
24.4.0 1,309 4/3/2024
24.3.0 2,243 3/6/2024
24.2.0 1,682 2/6/2024
24.1.0 1,564 12/29/2023
23.12.0 2,875 12/6/2023
23.11.0 8,455 11/7/2023
23.10.0 2,382 10/6/2023
23.9.0 2,691 9/5/2023
23.8.0 2,429 8/7/2023
23.7.0 3,423 7/10/2023
23.6.0 6,001 6/6/2023
23.5.0 5,547 5/6/2023
23.4.0 1,409 4/5/2023
23.3.0 5,166 3/6/2023
23.2.0 2,446 2/3/2023
23.1.0 8,453 1/6/2023
22.12.0 1,930 12/2/2022
22.11.0 1,630 11/3/2022
22.10.0 2,422 10/6/2022
22.9.0 1,860 9/5/2022
22.8.0 1,252 8/3/2022
22.7.0 1,243 7/5/2022
22.6.0 12,723 6/4/2022
22.5.0 6,940 5/4/2022
22.4.0 1,298 4/2/2022
22.3.0 4,276 2/28/2022
22.2.0 6,277 2/2/2022
22.1.0 823 12/30/2021
21.12.0 3,485 12/8/2021
21.11.0 708 11/8/2021
21.10.0 11,185 10/7/2021
21.9.0 2,212 9/7/2021
21.8.0 1,096 8/4/2021
21.7.0 29,857 7/2/2021
21.6.0 1,562 6/3/2021
21.5.0 3,262 5/5/2021
21.4.0 789 4/2/2021
21.3.0 22,136 3/5/2021
21.2.0 6,023 2/3/2021
21.1.0 482 12/30/2020
20.12.0 650 12/7/2020
20.11.0 893 11/9/2020
20.10.0 970 10/7/2020
20.9.0 1,897 9/4/2020
20.8.0 1,611 8/4/2020
20.7.0 683 7/3/2020
20.6.0 729 6/3/2020
20.5.0 695 5/5/2020
20.4.0 709 4/3/2020
20.3.0 1,114 3/4/2020
20.2.0 842 2/4/2020
20.1.0 4,652 12/30/2019
19.12.0 704 12/9/2019
19.11.0 658 11/7/2019
19.10.0 599 10/8/2019
19.9.0 1,078 9/9/2019
19.8.0 582 9/2/2019
19.7.0 1,959 7/5/2019