abhi
abhi

Reputation: 1

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

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);
                                

Upvotes: 0

Views: 661

Answers (0)

Related Questions