Tagged Questions
1
vote
1answer
82 views
Calculating lines with LineBreakMeasurer and change fontsize
I've used other excellent answers to design a method that returns the correct dimension of a JTextPane, given it's content and width, using LineBreakMeasurer.
The problem is that it is slightly of ...
0
votes
2answers
91 views
How to edit a text that is converted into image? or any other approach to realize/edit text
For my project I want to resize text just like in Adobe Photoshop. But when I tried resizing(by mouse drag) the textpane, only the textpane was getting resized and not the text inside it. Then I tried ...
0
votes
2answers
882 views
Best component in awt/swings to display the webpage and access it
Which is the best component in awt/Swings to display the webpage and access the webpage in that component without any issues like (functioning of javascript, images in the page should display good, as ...
0
votes
1answer
225 views
JTextPane Insert Icon Troubleshooting
public void valueChanged(TreeSelectionEvent event) {
//Add images depending on selection.
String selection = navigation.getLastSelectedPathComponent().toString();
if (selection == "Sigma") ...
2
votes
1answer
216 views
Disable hyperlinks in JTextPane
I have a JTextPane with HTML contents. Without changing the content type or calling setText, I would like disable the hyperlinks. I want
The hyperlinks to have the same style as the surrounding text ...