Examples

Using Font Kerning and Tracking in PDF (.NET Core/Framework)

Using Font Kerning and Tracking in a PDF using DynamicPDF Core Suite is straightforward. Kerning (different from tracking) is a font's ability to adjust the spacing between certain pairs of letters. Tracking, is the amount of overall space between all letters.

How to Use Font Kerning and Tracking in a PDF

The following steps and sample code illustrate using Font Kerning and Tracking in a PDF document using DynamicPDF Core Suite.

Steps for Using Fonts in a PDF Document

  1. Create a Document object.
  2. Create a Page object.
  3. Create a TextArea object and add the text to be displayed.
  4. Enable Kerning for the Textarea by setting the KerningEnabled property to true .
  5. Loop over the entire TextArea's KernValues' Spacing array and assign a certain value for every pair (or a subset of pairs). Assign positive value for making the space between chars closer and negative value for making the space further.
  6. Save the PDF document.

Sample Code - C#

Document document = new Document();
Page page = new Page();
string text = "To and WA are examples of when kerning would be used.";
TextArea textArea = new TextArea(text, 10, 10, 400, 700, Font.TimesRoman);

textArea.KerningEnabled = true;
KerningValues kernValues = textArea.GetKerningValues();

for (int i = 0; i < kernValues.Spacing.Length; i++)
{
        kernValues.Spacing[i] = (short)(kernValues.Spacing[i] - 400);
}

page.Elements.Add(textArea);
document.Pages.Add(page);  

document.Draw(@"Output.pdf");        

Over 75 Page Elements

DynamicPDF Core Suite contains over 75 page elements you can use to add rich content to the PDFs you create. DynamicPDF Core Suite includes elements for the following:

  • Images,
  • Text Objects (TextArea and Label),
  • HTML,
  • Barcodes (47 types),
  • Form Fields,
  • and Charts.

Getting Started

NuGet Package

DynamicPDF Core Suite is available on NuGet and is part of the ceTe.DynamicPDF.CoreSuite.NET package. The easiest way to install the package is through the Visual Studio Package Manger. You can also download the package directly from NuGet.

NuGet Package ID: ceTe.DynamicPDF.CoreSuite.NET

DynamicPDF Core Suite Information

More information can be found on the DynamicPDF Core Suite website.

Available on Other Platforms

DynamicPDF Core Suite is also available for the Java and COM/ActiveX platforms. Refer to the respective product pages for more details.

Why Choose DynamicPDF?

  • Transparent Pricing
  • Lots of Features
  • Easy to Use
  • Great Support
  • Efficient Performance
  • Product Maturity (Over 18 Years)
  • Free Evaluation
  • .NET Core Support (Most Products)
  • Flexible Licensing

We’re Not The Only Ones That Think We’re Great!