Word document conversion to images does not render bullets

Converting word document with bullets do not render correctly when converted to Image. Post Conversion the bullets are missing.
Below is source document
Format Resume.docx (13.7 KB)

Below is the converted image
page1.jpeg (26.1 KB)

Why is this happening.
Regards
Anit

@anitnair I cannot reproduce the problem on my side. Here is the image produced by the following simple code:

Document doc = new Document("C:\\Temp\\in.docx");
doc.save("C:\\Temp\\out.png");

out.png (6.2 KB)

Most likely the problem on your side occurs because the fonts required to render bullets are not available in the environment where the document is converted. If Aspose.Words cannot find the font used in the document, the font is substituted . This might lead into fonts mismatch and document layout due to the different fonts metrics. You can implement IWarningCallback to get notifications when font substitution is performed.
Please see our documentation to learn where Aspose.Words looks for fonts:
https://docs.aspose.com/words/java/specifying-truetype-fonts-location/