Hi,
While converting attached VSD file into PDF, an extra blank page appearing at the end.
Can you pls check.
Thanks,
Rajiv
Hi,
// load VSD drawing
Diagram diagram = new Diagram("D:\\AD\\test204\\Company Network.vsd");
// initialize PdfSaveOptions class object
com.aspose.diagram.PdfSaveOptions opts = new com.aspose.diagram.PdfSaveOptions();
// set flag of Foreground Pages only
opts.setSaveForegroundPagesOnly(true);
// save all Foreground Pages
diagram.save(“D:\AD\test204\Output.pdf”, opts);