XLibur.Fonts.SixLabors 0.0.0-rc.2188

This is a prerelease version of XLibur.Fonts.SixLabors.
dotnet add package XLibur.Fonts.SixLabors --version 0.0.0-rc.2188
                    
NuGet\Install-Package XLibur.Fonts.SixLabors -Version 0.0.0-rc.2188
                    
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="XLibur.Fonts.SixLabors" Version="0.0.0-rc.2188" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="XLibur.Fonts.SixLabors" Version="0.0.0-rc.2188" />
                    
Directory.Packages.props
<PackageReference Include="XLibur.Fonts.SixLabors" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add XLibur.Fonts.SixLabors --version 0.0.0-rc.2188
                    
#r "nuget: XLibur.Fonts.SixLabors, 0.0.0-rc.2188"
                    
#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.
#:package XLibur.Fonts.SixLabors@0.0.0-rc.2188
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=XLibur.Fonts.SixLabors&version=0.0.0-rc.2188&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=XLibur.Fonts.SixLabors&version=0.0.0-rc.2188&prerelease
                    
Install as a Cake Tool

XLibur.Fonts.SixLabors

An optional font engine for XLibur that uses SixLabors.Fonts 2.x for text measurement and font metrics.

Installation

dotnet add package XLibur.Fonts.SixLabors

Usage

using XLibur.Excel;
using XLibur.Fonts.SixLabors;

// Use system fonts with a named fallback
var fontEngine = new SixLaborsFontEngine("Microsoft Sans Serif");
var options = new LoadOptions { FontEngine = fontEngine };
using var wb = new XLWorkbook(options);

// Or use stream-based fonts (useful for Blazor, serverless, etc.)
using var fontStream = File.OpenRead("MyFont.ttf");
var engine = SixLaborsFontEngine.CreateOnlyWithFonts(fontStream);
var options2 = new LoadOptions { FontEngine = engine };
using var wb2 = new XLWorkbook(options2);

License

This package is licensed under MIT. Note that SixLabors.Fonts 2.x uses the Six Labors Split License, which has different terms for commercial use.

Product Compatible and additional computed target framework versions.
.NET 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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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
0.0.0-rc.2188 39 4/30/2026
0.0.0-rc.2187 39 4/30/2026
0.0.0-alpha.0.2185 42 4/30/2026
0.0.0-alpha.0.2184 50 4/29/2026
0.0.0-alpha.0.2182 61 3/30/2026