SixLabors.Fonts 2.0.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package SixLabors.Fonts --version 2.0.3
NuGet\Install-Package SixLabors.Fonts -Version 2.0.3
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="SixLabors.Fonts" Version="2.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SixLabors.Fonts --version 2.0.3
#r "nuget: SixLabors.Fonts, 2.0.3"
#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 SixLabors.Fonts as a Cake Addin
#addin nuget:?package=SixLabors.Fonts&version=2.0.3

// Install SixLabors.Fonts as a Cake Tool
#tool nuget:?package=SixLabors.Fonts&version=2.0.3

SixLabors.Fonts

SixLabors.Fonts

Build Status codecov License: Six Labors Split

GitHub issues GitHub stars GitHub forks

SixLabors.Fonts is a new cross-platform font loading and drawing library.

License

Support Six Labors

Support the efforts of the development of the Six Labors projects.

Documentation

  • Detailed documentation for the Fonts API is available. This includes additional conceptual documentation to help you get started.
  • Our Samples Repository is also available containing buildable code samples demonstrating common activities.

Questions

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.

Installation

Install stable releases via Nuget; development releases are available via Feedz.io.

Package Name Release (NuGet) Nightly (Feedz.io)
SixLabors.Fonts NuGet feedz.io

Manual build

If you prefer, you can compile Fonts yourself (please do and help!)

Alternatively, you can work from command line and/or with a lightweight editor on both Linux/Unix and Windows:

To clone Fonts locally, click the "Clone in [YOUR_OS]" button above or run the following git commands:

git clone https://github.com/SixLabors/Fonts

If working with Windows please ensure that you have enabled log file paths in git (run as Administrator).

git config --system core.longpaths true

Submodules

This repository contains git submodules. To add the submodules to the project, navigate to the repository root and type:

git submodule update --init --recursive

Features

  • Reading font description (name, family, subname etc plus other string metadata).
  • Loading OpenType fonts with with CFF1 and True Type outlines.
  • Loading True Type fonts.
  • Loading WOFF fonts.
  • Loading WOFF2 fonts.
  • Load all compatible fonts from local machine store.
  • Suppord for line breaking based on UAX 14
  • Support for rendering left to right, right to left and bidirectional text.
  • Support for ligatures.
  • Support for advanced OpenType features glyph substitution (GSUB) and glyph positioning (GPOS)

API Examples

Read font description

FontDescription description = null;
using(var fs = File.OpenRead("Font.ttf")){
    description = FontDescription.Load(fs); // once it has loaded the data the stream is no longer required and can be disposed of
}

string name = description.FontName(CultureInfo.InvariantCulture);

Populating a font collection

FontCollection fonts = new FontCollection();
FontFamily font1 = fonts.Add("./path/to/font1.ttf");
FontFamily font2 = fonts.Add("./path/to/font2.woff");

How can you help?

Please... Spread the word, contribute algorithms, submit performance improvements, unit tests.

Projects using SixLabors.Fonts

The SixLabors.Fonts Team

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages (79)

Showing the top 5 NuGet packages that depend on SixLabors.Fonts:

Package Downloads
ClosedXML The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

See release notes https://github.com/ClosedXML/ClosedXML/releases/tag/0.104.0-preview2 ClosedXML is a .NET library for reading, manipulating and writing Excel 2007+ (.xlsx, .xlsm) files. It aims to provide an intuitive and user-friendly interface to dealing with the underlying OpenXML API.

NPOI The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

.NET port of Apache POI | Contact us on telegram: https://t.me/npoidevs

SixLabors.ImageSharp.Drawing The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

An extension to ImageSharp that allows the drawing of images, paths, and text.

PdfSharpCore

PdfSharp for .NET Core PdfSharpCore is a partial port of PdfSharp.Xamarin for .NET Core Additionally MigraDoc has been ported as well (from version 1.32). Images have been implemented with ImageSharp from https://www.nuget.org/packages/SixLabors.ImageSharp

SixLabors.Shapes.Text The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Allows generating glyphs for text and a fonts for manipulation using SixLabors.Shapes

GitHub repositories (21)

Showing the top 5 popular GitHub repositories that depend on SixLabors.Fonts:

Repository Stars
nissl-lab/npoi
a .NET library that can read/write Office formats without Microsoft Office installed. No COM+, no interop.
ClosedXML/ClosedXML
ClosedXML is a .NET library for reading, manipulating and writing Excel 2007+ (.xlsx, .xlsm) files. It aims to provide an intuitive and user-friendly interface to dealing with the underlying OpenXML API.
cyanfish/naps2
Scan documents to PDF and more, as simply as possible.
peachpiecompiler/peachpie
PeachPie - the PHP compiler and runtime for .NET and .NET Core
Webreaper/Damselfly
Damselfly is a server-based Photograph Management app. The goal of Damselfly is to index an extremely large collection of images, and allow easy search and retrieval of those images, using metadata such as the IPTC keyword tags, as well as the folder and file names. Damselfly includes support for object/face detection.
Version Downloads Last updated
2.0.3 25,186 3/28/2024
2.0.2 67,588 2/15/2024
2.0.1 353,444 12/1/2023
2.0.0 794,257 9/15/2023
1.0.1 193,596 9/15/2023
1.0.0 6,421,220 8/11/2023
1.0.0-beta19 4,612,005 10/30/2022
1.0.0-beta18 12,286,692 7/22/2022
1.0.0-beta17 5,034,565 5/18/2022
1.0.0-beta16 2,684,817 2/9/2022
1.0.0-beta15 1,239,080 5/20/2021
1.0.0-beta0013 6,709,277 6/18/2020
1.0.0-beta0012 61,811 6/8/2020
1.0.0-beta0011 310,853 5/13/2020
1.0.0-beta0009 1,869,901 9/1/2019
1.0.0-beta0008 1,030,979 1/25/2019
1.0.0-beta0007 756,361 8/5/2018
1.0.0-beta0006 8,217 6/7/2018
1.0.0-beta0005 2,753,224 5/24/2018
1.0.0-beta0004 3,540 3/27/2018
1.0.0-beta0003 141,098 11/17/2017
1.0.0-beta0002 15,832 9/16/2017
1.0.0-beta0001 26,648 9/13/2017
0.1.0-alpha0016 14,341 7/16/2017
0.1.0-alpha0015 1,108 6/22/2017
0.1.0-alpha0014 73,809 6/13/2017
0.1.0-alpha0013 8,170 6/6/2017
0.1.0-alpha0012 1,129 6/4/2017
0.1.0-alpha0011 243,833 5/30/2017
0.1.0-alpha0010 27,040 5/2/2017
0.1.0-alpha0009 1,070 4/21/2017
0.1.0-alpha0008 2,275 4/17/2017
0.1.0-alpha0007 1,108 4/16/2017
0.1.0-alpha0006 1,140 4/13/2017
0.1.0-alpha0005 1,257 4/12/2017
0.1.0-alpha0004 1,165 4/12/2017
0.1.0-alpha0003 1,085 4/12/2017
0.1.0-alpha0002 20,927 3/12/2017
0.1.0-alpha0001 1,250 3/5/2017