Надо поместить в JTextPane html, добавляющий картинку, лежащую в одной директории с jar. В линухе работает так:
jTextPane1.setText("<html><img src='file://" + System.getProperty("user.dir") + "/some.png'></html>");
String rpl = System.getProperty("user.dir").replace("\\", "/").replace(" ", "%20");
jTextPane1.setText("<html><img src='file://" + rpl + "/some.png'></html>");