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