Example usage for com.itextpdf.text.pdf PdfContentByte getKernArray

List of usage examples for com.itextpdf.text.pdf PdfContentByte getKernArray

Introduction

In this page you can find the example usage for com.itextpdf.text.pdf PdfContentByte getKernArray.

Prototype

public static PdfTextArray getKernArray(final String text, final BaseFont font) 

Source Link

Document

Constructs a kern array for a text in a certain font

Usage

From source file:com.chaschev.itext.CanvasBuilder.java

License:Apache License

public static PdfTextArray getKernArray(String text, BaseFont font) {
    return PdfContentByte.getKernArray(text, font);
}