Convert Postscript to PDF using Aspose.PDF for .NET

Hi


I’m looking for a product that will convert our existing .ps files to PDF as it has a smaller footprint.

I saw a thread from May 2015 that said that this feature is postponed, what is the current status and how can we get it motivated to add this feature?

regards
Stephen

Hi Stephen,


Thanks for your inquiry. I am afraid the subjected feature is still on hold due to other priority issues. However we have linked your thread to the issue id(PDFNEWNET-20110) and we will notify you as soon as we made some significant progress towards issue resolution.

We are sorry for the inconvenience.

Best Regards,

@stephena

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);