Hi Aspose team
We are working on Visio’s file conversion to SVG format.
We found a problem in the result, that is, some texts are covered by black rectangles.
Here is our code for conversion test:
Diagram d = new Diagram(“custom/input/visio/BFlowcht.vsd”);
SVGSaveOptions saveOp = new SVGSaveOptions();
for (int i = 0; i < d.getPages().getCount(); i++) {
System.out.println(d.getPages().get(i).getName());
saveOp.setPageIndex(i);
d.save(new FileOutputStream(“custom/output/visio/BFlowcht.” + (i + 1)
+ “.svg”), saveOp);
}
Is there any option to fix this?
I have uploaded a comparison image, the vsd file, and the result.
This problem can be observed in page #1 and #2.
Please check the attachment, and thanks for your help.
Best,
Craig