Thank you for your support.
I have converted No3.vsd to image with Aspose Diagaram 17.11. Please find a error in ExportToImage_out.png.
No3.zip (53.9 KB)
ExportToImage_out.png (3.3 KB)
I have also attached No3.tiff whichi is the image that MS Visio outputs as a reference.
No3.tiff.zip (6.6 KB)
This is my code
public class ExportToImage
{
public static void Run()
{
try {
// ExStart:ExportToImage
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_LoadSaveConvert();
// Call the diagram constructor to load a VSD diagram
//Diagram diagram = new Diagram(dataDir + "ExportToImage.vsd");
Diagram diagram = new Diagram(dataDir + "No3.vsd");
// Save Image file
diagram.Save(dataDir + "ExportToImage_out.png", SaveFileFormat.PNG);
// ExEnd:ExportToImage
}
catch (System.Exception ex)
{
}
}
}