Dear Team,
How to convert PPTX to PDF format using aspose.pdf for java.
and also convert EPS to PDF format.
Please give solution & example for this scenario.
Dear Team,
How to convert PPTX to PDF format using aspose.pdf for java.
and also convert EPS to PDF format.
Please give solution & example for this scenario.
@Vadivel_S_S
Thanks for contacting support.
In order to deal with PPTX file(s) and their conversion into other formats, we offer an API Aspose.Slides for Java. Please check “Converting Presentation to PDF” article(s) in API docs, in order to convert PPTX to PDF format.
The feature to convert EPS to PDF format, has currently been added into Aspose.PDF for .NET 18.1. However, I am afraid that it has not been ported into Aspose.PDF for Java API. The feature request has already been logged as PDFJAVA-37411 in our issue tracking system and it is expected to be resolved in upcoming release Aspose.PDF for Java 18.1.
We have associated the feature request ID with this forum thread, so that you will be notified once the feature is available. Please be patient and spare us little time.
We are sorry for this inconvenience.
PS: Would you please share the JDK/JRE version in which you are working.
@Vadivel_S_S
Thanks for your patience.
We are pleased to inform you that EPS to PDF Conversion Support, which was request under the ticket ID PDFJAVA-37411, has been provided in Aspose.PDF for Java 18.1. Please use following code snippet, in order to convert EPS into PDF and in case of any further assistance, please feel free to let us know.
LoadOptions options = new PsLoadOptions();
Document doc = new Document(myDir + "TestShapes.eps", options);
doc.save(myDir + "TestShapes.pdf");