Interpret Postscript

I need to interpret a Postscript file and convert it to PDF. Is Aspose Java able to do that? How?

Hi Jonas,

Thank you for contacting support. The requested feature as PostScript to PDF conversion has already been logged under the ticket ID PDFNEWJAVA-34279 and our product team is working on investigating the details regarding its implement. Your post has also been linked to this ticket. We'll keep you informed regarding any available updates. We're sorry for the inconvenience caused.

@pdfconv

Thanks for your patience.

We are glad to inform you that earlier logged feature request PDFJAVA-34279 has been fulfilled in Aspose.PDF for Java 18.1. Please use following code snippet, in order to convert PostScript to PDF:

Document doc = new Document("input.ps", new PsLoadOptions());
doc.save("output.pdf");

In case of any further assistance, please feel free to let us know.