1
vote
1answer
91 views

How do I save an image to a RTF formatted file?

I have a problem, in that I am able to save text to an RTF file, and also able to insert an image to the file, but when I save the file and load it again the image is not displaying. I have tried to ...
0
votes
1answer
151 views

Write text into a JTextPane with an image background

I have a JTextPane with an image for its background. prevWords = new JTextPane() { public void paint(Graphics g) { BufferedImage img; try { ...
0
votes
2answers
935 views

How to add images in JTextPane?

I want to give the user the facility to copy and paste Images in JTextPane. Please help me.
1
vote
2answers
1k views

Insert a picture into a JTextPane by clicking Insert

In my notepad application, I am trying to add an image as if it were a JLabel into a JTextPane by clicking on a JMenuItem called Picture. private class Picture implements ActionListener { ...
0
votes
1answer
847 views

Show image in JTextPane

I know we can set html as JTextPane content type and then use img tag to display image but here I have image data in bytes and img do not accept bytes it just wants url. So how can I show that image ...
0
votes
3answers
655 views

Java JTextPane HTML image cookies

I am using a JTextPane to display data from a webpage that isn't mine, so I have no control over its contents. It requires a user to be logged in, so I use URLConnections to connect to that webpage ...
3
votes
3answers
1k views

base64 image into JTextPane

Is it possible to display a base64 encrypted image into a JTextPane ? Here my code JTextPane jTextPane = new JTextPane(); javax.swing.text.html.HTMLEditorKit eKit = new ...