Convert PostScript to PDF using Aspose.PDF for Java

What about converting .PS postscript files to PDF?

Hello Dale,


Thanks for considering Aspose.

I am afraid the required feature is currently not support, but for the sake of implementation, I have logged this requirement as PDFJAVA-18973. Our development team will further look into the details of this requirement and see if we can support this feature or not. Once we have some definite information regarding its implementation, we would be pleased to update you with the status of correction.

We apologize for your inconvenience.

Hello Dale,


Thanks for your patience.

The feature requested earlier as PostScript to PDF is logged with new ID as PDFNEWJAVA-34279 and product team is working on investigating the details regarding its implement. As soon as we have some definite updates regarding its implementation, we will let you know.

Your patience and comprehension is greatly appreciated in this regard.

@parkind

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

com.aspose.pdf.LoadOptions options = new com.aspose.pdf.PsLoadOptions();
// Open .ps document with created load options
Document pdfDocument = new Document("input.ps", options);
// Save document
pdfDocument.save("PSToPDF_out.pdf");