I have 30 KB xps file with the side way pages inside, after ASPOSE.Pdf converting it to Pdf file, the converted file has blank pages, all content are gone.
…
Aspose.Pdf.License ASPlIC = new License();
ASPlIC.SetLicense(“Aspose.Pdf.lic”);
Aspose.Pdf.LoadOptions options = new XpsLoadOptions();
doc = new Document(dataDir + “hasSideWayPages.xps”, options);
doc.Save(resultDir + “hasSideWayPages.pdf”);
…