Diagrams not shown in the result of saving a PowerPoint file to 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 = "1213.pptx";
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 diagrams can be rendered correctly.
However, they are not shown in the result from Linux environment

1213.pptx.zip (208.1 KB)
result.zip (221.8 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-36653 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.

@craig.w.su,

I like to inform that our product team investigating issue in details. For further investigation, can you please provide following details.

  1. Linux OS and version.
  2. JDK version.

Also please try to use Aspose.Slides for Java 17.10 and share the result with us.

The issues you have found earlier (filed as SLIDESJAVA-36653) have been fixed in this update.

The issues you have found earlier (filed as ) have been fixed in this update. This message was posted using BugNotificationTool from Downloads module by MuzammilKhan