How to wrap contents in a table ? .docx to PDF using apache POI

528 views Asked by At

On converting the .docx to PDF using apache POI, the contents in the table are not getting wrapped.

enter image description here

Following is the code , I am using to convert

XWPFDocument document = new XWPFDocument(is);
                                
                                PdfOptions options = PdfOptions.create();
                                
                                PdfConverter.getInstance().convert(document, output, options);
                                
0

There are 0 answers