Hi,
I am trying to convert a PDF to PDF/A-1b format but it looks like it is not working. I am using Acrobat XI pro to verify the PDF format ( Screenshot attached ).
Here is the Code:
string completePath = "sample.pdf" ;
string newPath = "result.pdf";
Aspose.Pdf.Document pdfDocument = new Aspose.Pdf.Document(completePath);
Aspose.Pdf.PdfFormatConversionOptions pdfConvert = new Aspose.Pdf.PdfFormatConversionOptions(Aspose.Pdf.PdfFormat.PDF_A_1B);
pdfDocument.Convert(pdfConvert);
// Save output document
pdfDocument.Save(newPath);
Please let me know
Thanks
Imranpdf_convert_outcome.jpg (139.3 KB)