Hi,
Environment: .Net 4.0, Library Aspose11.5.0. [Works on Aspose 10.3.0 version]
To set the rotation on the document to zero:
Attached pdf loses images when I do the following:
Aspose.Pdf.Document pdfDocument = new Aspose.Pdf.Document(filename);This does not happen with Aspose Library 10.3.0
Aspose.Pdf.PageCollection pageCollection = pdfDocument.Pages;
Aspose.Pdf.XpsSaveOptions saveOptions = new Aspose.Pdf.XpsSaveOptions();
pdfDocument.Save(root + “/” + id + “.xps”, saveOptions);
Aspose.Pdf.XpsLoadOptions options = new Aspose.Pdf.XpsLoadOptions();
Aspose.Pdf.Document document = new Aspose.Pdf.Document(root + “/” + id + “.xps”, options);
document.Save(root + “/” + id + “.pdf”);
Can you please help me out with this issue? How can I preserve images for the latest library version?
Thank you,
Sireesha