I have generated a table in doc and pdf both. The table generated in the doc is retaining all the property whatever we have set. But in pdf getting in a distorted format. I have attached the pdf and doc file for the same.
New Imaging_Board Meeting_agenda (15).pdf (70.9 KB)
New Imaging_Board Meeting_agenda (29).zip (150.0 KB)
For pdf saving, i am using below code
genFileWithPath = PDF_FOLDER + asposeGeneratedFileName;
PdfSaveOptions options = new PdfSaveOptions();
options.getOutlineOptions().setDefaultBookmarksOutlineLevel(1);
options.getOutlineOptions().setHeadingsOutlineLevels(2);
// options.setFontEmbeddingMode(PdfFontEmbeddingMode.EMBED_ALL);
// options.setPreserveFormFields(true);
document.save(genFileWithPath,options);
Do we need to set any other property to in pdf save option to retain the table?