Dear Aspose-Team,
I've got trouble with converting PDF documents, which are rotated. As you can see I attached two files.
I want to convert the "original.pdf" into a PDF_A_1B. This generally works fine, except for rotated pages/PDFs. In this case the content ( in this case text) isn't rotated. You can see an example in "converted.pdf" as attachment.
Here is the code I used :
// doc is instanceof Aspose.Pdf.Document
doc.Convert("pdfToPdfAConvert.log", PdfFormat.PDF_A_1B, ConvertErrorAction.Delete);
doc.Optimize();
doc.Save(s_OutputFile);
Did you have any tips to solve this problem?