psiegman / epublib

a java library for reading and writing epub files
http://www.siegmann.nl/epublib
1.06k stars 317 forks source link

Reflowable and Pagination On Java swing Application #76

Open bharathmit opened 9 years ago

bharathmit commented 9 years ago

Hi Guys, I tried for reflwable (html text line wrap) in jeditorpane and pagination of jframe resized on java swing application. The html content not fit the size of component. there is no need for horizontal and vertical scrolling. how to fix it please any one help me

JEditorPane editorPane = new JEditorPane(); editorPane.setBackground(Color.white); editorPane.setEditable(false);
editorPane.setEditorKit( new HTMLEditorKit()); editorPane.setDocument(document);//HTMLDocument file

editorPane can be add in JPanel