Hi
I am using Aspose Diagram 17.11.0 JAVA to convert vsd file into SVG format.
Here is my code for test:
String fileName = "d1.vsd";
Diagram d = new Diagram("custom/input/visio/" + fileName);
SVGSaveOptions saveOp = new SVGSaveOptions();
new File("custom/output/visio/" + fileName + "/").mkdirs();
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/" + fileName + "/" + (i + 1) + ".svg"), saveOp);
}
In the result of this file, there are several text shifted-up, and some are vanished.
Please check the comparison images, the result, the vsd file. Thank you~
d1.zip (671.0 KB)
result.zip (64.2 KB)
text shifted.JPG (120.5 KB)
text vanished.JPG (160.4 KB)
Craig