Java examples for Swing:JTextPane
Drawing Text with Mixed Styles with JTextPane
// Apply styles to text AttributedString astr = new AttributedString("aString"); astr.addAttribute(TextAttribute.FONT, font, start, end); astr.addAttribute(TextAttribute.BACKGROUND, color, start, end); // Draw mixed-style text TextLayout tl = new TextLayout(astr.getIterator(), g2d.getFontRenderContext()); tl.draw(g2d, x, y);