public class AsposeTest {

	public static void main(String[] args) throws Exception {//Main function to convert VSD to PDF 

		// Instantiate the license
		com.aspose.diagram.License license = new com.aspose.diagram.License(); 
		license.setLicense("Aspose.Total.lic");

		// Load Visio diagram
		com.aspose.diagram.Diagram diagram = new com.aspose.diagram.Diagram("Sample.vsd");

		// Declare PdfSaveOptions object
		com.aspose.diagram.PdfSaveOptions saveOptions = new com.aspose.diagram.PdfSaveOptions();

		// Number of pages to render
		saveOptions.setPageCount(2);

		// Set first page index
		saveOptions.setPageIndex(1);

		// Save Visio diagram to PDF
		diagram.save("PDF_out.pdf", saveOptions);

		System.out.println("Done");
	}
}