Inserting an Image into a Text Pane try { Style style = doc.addStyle("StyleName", null); StyleConstants.setIcon(style, new ImageIcon("imagefile")); doc.insertString(doc.getLength(), "ignored text", style); } catch (BadLocationException e) { }