Bullet signs are not rendered correctly in the result of saving a PowerPoint into SVG format

Hi

I am using Aspose Slides 17.8 to convert PowerPoint files into SVG format

Here is code I used for test:

String fileName = “Java-Chapter05-Control_Statements_PartII.ppt”;
Presentation pre = new Presentation(fileName);

String dirName = UUID.randomUUID().toString();
File file = new File("" + dirName);
file.mkdirs();

for (int i = 0; i < pre.getSlides().size(); i++) {
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
ISlide slide = pre.getSlides().get_Item(i);
slide.writeAsSvg(outputStream);
IOUtils.write(outputStream.toByteArray(), new FileOutputStream("" + dirName + “/” + (i + 1) + “.svg”));
}

Issue:
In the result from Windows environment, the bullet signs can be rendered correctly.
However, they are not rendered correctly in the result from Linux environment

comparison.JPG (188.3 KB)
Java-Chapter05-Control_Statements_PartII.ppt.zip (622.2 KB)
result.zip (433.3 KB)

I have uploaded the PowerPoint file and the result.
Please check the attachment and this issue, thank you

P.S. I suggest that It should be available to upload .pptx file directly on the forum.

Craig

@craig.w.su,

I have worked with source code and presentation file shared by you using Aspose.Slides for Java 17.9 and have been able to observe the issue. A ticket with ID SLIDESJAVA-36654 has been created in our issue tracking system to further investigate and resolve the issue. This thread has been linked with issue so that you may be automatically notified once issue will be fixed.