Example usage for java.awt.font TextAttribute KERNING

List of usage examples for java.awt.font TextAttribute KERNING

Introduction

In this page you can find the example usage for java.awt.font TextAttribute KERNING.

Prototype

TextAttribute KERNING

To view the source code for java.awt.font TextAttribute KERNING.

Click Source Link

Document

Attribute key to request kerning.

Usage

From source file:net.sf.jasperreports.engine.fill.SimpleTextLineWrapper.java

protected boolean determineComplexLayout(Font font) {
    // this tries to emulate the tests in Font.getStringBounds()
    //FIXME use font.hasLayoutAttributes() instead of this?
    Map<TextAttribute, ?> fontAttributes = font.getAttributes();
    Object kerning = fontAttributes.get(TextAttribute.KERNING);
    Object ligatures = fontAttributes.get(TextAttribute.LIGATURES);
    return (kerning != null && TextAttribute.KERNING_ON.equals(kerning))
            || (ligatures != null && TextAttribute.LIGATURES_ON.equals(ligatures)) || font.isTransformed();
}