Support for conversion to PDF/X-1A format

Hi Team,

Please can you confirm whether Aspose.PDF supports conversion to PDF/X-1A or PDF/X-3?
If there is no support currently, are there any plans to include this feature in the future?
This is not clear from existing posts on the Support Forum.

Regards

Paul Cummings

@PCummings

Aspose.PDF for .NET supports these formats of PDF document. Please use following code snippet in order to generate these formats:

Document doc = new Document(dataDir + "B.pdf");
doc.Convert(new MemoryStream(), PdfFormat.PDF_X_1A, ConvertErrorAction.Delete);
doc.Save(dataDir + "B_out.pdf");

Thanks - is it safe to assume that Apsose.PDF for Java also supports these formats of PDF document?
Could you also confirm which release version this was made available?

@PCummings

Yes, Aspose.PDF for Java supports this functionality. It is always recommended to use latest version of the API due to latest updates and improvement. However, you can try with your existing license and in case you face any issue, please feel free to let us know.