DeltaText 0.0.8

dotnet add package DeltaText --version 0.0.8
                    
NuGet\Install-Package DeltaText -Version 0.0.8
                    
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="DeltaText" Version="0.0.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DeltaText" Version="0.0.8" />
                    
Directory.Packages.props
<PackageReference Include="DeltaText" />
                    
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 DeltaText --version 0.0.8
                    
#r "nuget: DeltaText, 0.0.8"
                    
#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 DeltaText@0.0.8
                    
#: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=DeltaText&version=0.0.8
                    
Install as a Cake Addin
#tool nuget:?package=DeltaText&version=0.0.8
                    
Install as a Cake Tool

DeltaText

DeltaText is a renderer-neutral .NET text producer. It shapes UTF-16 text and returns owned glyph images and metrics for CPU previews or a renderer.

What it provides

  • Immutable font instances and shaped glyph runs.
  • Unicode-aware text shaping through the public text service.
  • Grayscale coverage and SDF glyph images.
  • Managed MSDF and color glyph-image modes where supported by the input font.
  • Owned pixel snapshots and glyph metrics that can outlive the shaping call.
  • A CPU renderer for producing an owned RGBA8 preview bitmap.

Quick start

<PackageReference Include="DeltaText" Version="0.0.8" />
using Delta.Text;
using Delta.Text.Contract;

using ITextService text = new SixLaborsTextService();
byte[] fontBytes = File.ReadAllBytes("font.ttf");
FontInstanceId font = text.OpenFont(new FontOpenRequest(
    "embedded-font", fontBytes, 0));
ShapedText shaped = text.Shape(new TextShapeRequest(
    "Hello".AsMemory(), 32f, new[] { font }));
CpuTextImage image = new CpuTextRenderer(text).Render(shaped);

The application owns the returned shaped text and pixel snapshots and disposes font instances when they are no longer needed. Renderers decide atlas packing, UVs, batching and GPU resource lifetime.

Capabilities and limits

DeltaText targets .NET 8.0. It owns shaping and CPU glyph-image generation, not GPU resources or renderer batching. The canonical contract defines the supported image modes and fallback behavior; unsupported font formats use the documented fallback rather than silently claiming full color support.

Packages and examples

Install DeltaText for the producer API. See the FontCheck probe for a runnable headless example.

Further reading

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 was computed.  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 was computed.  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 (2)

Showing the top 2 NuGet packages that depend on DeltaText:

Package Downloads
DeltaXAML.Contract

Neutral input and borrowed UI display-list contracts for DeltaXAML consumers.

DeltaXAML

Retained XAML UI library with typed properties, bindings and layout.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.8 51 9/4/2026
0.0.7 54 9/2/2026