Hi.
I am converting a HTML page into a PDF file.
In the HTML page we have a long link. Because the link is longer than the PDF page width, the whole link isn't shown correct.
Is there a way to break up long words or links into a second line?
Here is the code I currently use:
Code:
...
PD4ML html = new PD4ML();
html.setPageSize( org.zefer.pd4ml.PD4Constants.A4 );
html.setPageInsets( new java.awt.Insets( 30, 20, 20, 20) );
...