Hello,
EmbeddedPPT.zip (39.3 KB)
I have converted EmbeddedPPT.vsdx to a image with Aspose.Diagram 17.9 however blank image outputs.
I have attached SaveAsPdfbyDiagram.pdf which is the pdf MS Diagram outputs as a reference.
SaveAsPdfbyDiagram.pdf (141.0 KB)
This is my code.
public static void Run()
{
// 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 + "EmbeddedPPT.vsdx");
// Save Image file
diagram.Save(dataDir + "ExportToImage_out.png", SaveFileFormat.PNG);
// ExEnd:ExportToImage
}