Hi
Hi Stephen,
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);