Example usage for java.awt.font TextAttribute LIGATURES

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

Introduction

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

Prototype

TextAttribute LIGATURES

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

Click Source Link

Document

Attribute key for enabling optional ligatures.

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();
}