Convert PostScript to PDF/A using Aspose.PDF for .NET

Hi,


I need to convert postscript files into PDF/A. Do you have any product that will do this in .Net?

Hello Erik,

Thanks for considering Aspose.

I am afraid the required feature is currently not supported. However for the sake of implementation, I have logged this requirement as PDFNET-20110 in our issue tracking system. We will further look into the details of this problem and will keep you updated on the status of correction.

Your patience and comprehension is greatly appreciated in this regard. We apologize for your inconvenience.

@iNMazer

We would like to share with you that PostScript to PDF conversion is now available in Aspose.PDF for .NET. Please use following code snippet with latest version of the API to perform conversion:

PsLoadOptions options = new PsLoadOptions();
options.FontsFolders = new[] {FONTS_FOLDER};
Document doc = new Document(inputFileName,options);
doc.Save(outputFileName);

Later on, you can convert output PDF to PDF/A as well using Aspose.PDF for .NET.