Hi Aspose team,
I am using Aspose Diagram 17.4.0 to convert a Visio file to a SVG file.
But the results in the third sheet has a background of image turns black.
Here is the code I’m using:
Diagram d = new Diagram(filePath);
SVGSaveOptions saveOp = new SVGSaveOptions();
String dirName = UUID.randomUUID().toString();
File file = new File( dirName+"/");
file.mkdirs();
for (int i = 0; i < d.getPages().getCount(); i++) {
saveOp.setPageIndex(i);
d.save(new FileOutputStream(dirName + “/” + (i + 1) + “.svg”), saveOp);
}
And I also uploaded the origin Visio file and the image of the result.
Please help me figure it out what happend, thanks.
file.zip (238.5 KB)