Drawing multi-line text with AttributedString and LineBreakMeasurer : Text Layout « 2D Graphics GUI « Java






Drawing multi-line text with AttributedString and LineBreakMeasurer

    
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.font.FontRenderContext;
import java.awt.font.LineBreakMeasurer;
import java.awt.font.TextAttribute;
import java.awt.font.TextLayout;
import java.text.AttributedCharacterIterator;
import java.text.AttributedString;

import javax.swing.JFrame;
import javax.swing.UIManager;

public class Main extends JFrame {
  public void paint(Graphics g) {
    String input = "this is a test.this is a test.this is a test.this is a test.";

    AttributedString attributedString = new AttributedString(input);
    attributedString.addAttribute(TextAttribute.FONT, (Font) UIManager
        .get("Label.font"));
    Color color = (Color) UIManager.get("Label.foreground");

    attributedString.addAttribute(TextAttribute.FOREGROUND, color);

    super.paint(g);
    Graphics2D g2d = (Graphics2D) g;

    int width = getSize().width;
    int x = 10;
    int y = 30;

    AttributedCharacterIterator characterIterator = attributedString
        .getIterator();
    FontRenderContext fontRenderContext = g2d.getFontRenderContext();
    LineBreakMeasurer measurer = new LineBreakMeasurer(characterIterator,
        fontRenderContext);
    while (measurer.getPosition() < characterIterator.getEndIndex()) {
      TextLayout textLayout = measurer.nextLayout(width);
      y += textLayout.getAscent();
      textLayout.draw(g2d, x, y);
      y += textLayout.getDescent() + textLayout.getLeading();
    }
  }

  public static void main(String args[]) {
    JFrame frame = new Main();
    frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
    frame.setSize(20, 200);

    frame.setVisible(true);
  }
}

   
    
    
    
  








Related examples in the same category

1.JFreeChart: Draw String DemoJFreeChart: Draw String Demo
2.Unicode: test layoutUnicode: test layout
3.Unicode displayUnicode display
4.Line break for textlayoutLine break for textlayout
5.Mouse hit and textlayoutMouse hit and textlayout
6.TextLayout demoTextLayout demo
7.Draw text along a curveDraw text along a curve
8.TextHitInfo Demo: tell you which is the letter you are clickingTextHitInfo Demo: tell you which is the letter you are clicking
9.TextAttribute: Underline and strike throughTextAttribute: Underline and strike through
10.TextAttribute: color and fontTextAttribute: color and font
11.Hightlight text by drag and selectionHightlight text by drag and selection
12.LineMetrics: the metrics to layout characters along a lineLineMetrics: the metrics to layout characters along a line
13.Paragraph LayoutParagraph Layout
14.Caret actionCaret action
15.Caret and TextLayoutCaret and TextLayout
16.Another Line Break Demo
17.A display of text, formatted by us instead of by AWT/SwingA display of text, formatted by us instead of by AWT/Swing
18.Draw text with TextLayout
19.Drawing a Paragraph of Text
20.Getting the Shape from the Outline of Text
21.Drawing Text with Mixed Styles
22.Draws the string at the specified location underlining the specified character
23.Renders a paragraph of text (line breaks ignored) to an image (created and returned).