Browse our Products
Aspose.Slides for Android via Java 20.12 Release Notes
This page contains release notes for Aspose.Slides for Android via Java 20.12
Key | Summary | Category |
---|---|---|
SLIDESANDROID-246 | Use Aspose.Slides for Java 20.12 features | Enhancement |
Public API Changes
IInk interface has been added
IInk interface and Ink implementer class have been added. They represent an Ink graphical element. IInk declaration:
/**
* <p>
* Represents an ink object on a slide.
* </p>
*/
public interface IInk extends IGraphicalObject
{
}
PDF Import
PDF Import feature has been added. This feature allows importing a PDF document into Presentation. A new SlideCollection.addFromPdf() method creates slides from the PDF document and adds them to the end of the collection:
Presentation pres = new Presentation();
try {
pres.getSlides().addFromPdf("document.pdf");
pres.save("presentation.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}