On converting the .docx to PDF using apache POI, the contents in the table are not getting wrapped.
Following is the code , I am using to convert
XWPFDocument document = new XWPFDocument(is);
PdfOptions options = PdfOptions.create();
PdfConverter.getInstance().convert(document, output, options);