Hello,
We are tryng tto convert image to PDF_A_1A and pdfs to PDF_A_1A. We are using aspose pdf version 17.10. The program will be run on AWS cloud and we want to see if there is a way to do this conversion without using the conversion log xml
com.aspose.pdf.Document doc = new com.aspose.pdf.Document(inputFileStream);
doc.convert(“Conversion_log.xml”, com.aspose.pdf.PdfFormat.PDF_A_1A, com.aspose.pdf.ConvertErrorAction.Delete);
doc.save(outByteStream);
pdfInputStream = new ByteArrayInputStream(outByteStream.toByteArray());