Hello,
when converting a Word document to a PDF document, bullet points are not rendered correctly:
Selection_035.png (426 Bytes)
Here is the original document:
test-bullet-points.docx (21.4 KB)
I use following code:
Document doc = new Document(new FileInputStream(original));
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getPageSetup().setOrientation(orientation);
doc.getFieldOptions().setFieldUpdateCultureSource(FieldUpdateCultureSource.FIELD_CODE);
doc.save(converted.getAbsolutePath(), com.aspose.words.SaveFormat.PDF);
I used already different fonts, no change.
Additional info:
Aspose Words 18.8
Aspose PDF 18.7
Operating system: Linux Ubuntu 18.04
MS-Fonts are installed (ttf-mscorefonts-installer)
Thanks for your help!
Christian