ZingPDF.GoogleFonts 1.0.49

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

ZingPDF.GoogleFonts

ZingPDF.GoogleFonts resolves Google Fonts through the Google Fonts Developer API and registers them into a ZingPDF document as embedded TrueType fonts.

Installation

dotnet add package ZingPDF.GoogleFonts

Typical usage

using ZingPDF;
using ZingPDF.GoogleFonts;
using ZingPDF.Graphics;
using ZingPDF.Syntax.CommonDataStructures;

using var pdf = Pdf.Create();
var page = await pdf.GetPageAsync(1);

var client = new GoogleFontsClient("<google-fonts-api-key>");
var font = await pdf.RegisterGoogleFontAsync(
    client,
    new GoogleFontRequest
    {
        Family = "Inter",
        Variant = "regular"
    });

await page.AddTextAsync("Hello from Google Fonts", Rectangle.FromDimensions(300, 80), font, 18, RGBColour.Black);

Notes

  • This package requires a Google Fonts Developer API key.
  • High-level text registration currently targets WinAnsi / Windows-1252 text workflows.
  • Most applications should reference this package alongside ZingPDF, not instead of it.

Licensing

ZingPDF is proprietary software. Review LICENSE.txt and ensure you have an active paid subscription with sufficient seats, or another applicable commercial agreement, before commercial use or commercial bundling.

Support and compatibility

See SUPPORT.md in the package root or docs/project/SUPPORT.md in the repository for the current support stance and release-readiness notes.

More information

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

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
1.0.49 0 4/9/2026
1.0.48 62 4/7/2026
1.0.45 81 4/6/2026
1.0.44 79 4/6/2026
1.0.43 89 4/6/2026
1.0.40 80 4/5/2026
1.0.38 83 4/5/2026
1.0.37 77 4/5/2026