Hello,
Could you please help me figure out how to check if IPictureFrame shape instance is a cameo (camera feed object)?
thank you in advance.
Hello,
Could you please help me figure out how to check if IPictureFrame shape instance is a cameo (camera feed object)?
thank you in advance.
@TatjanaDragune,
Thank you for contacting free support. I need some time to answer your question. I will get back to you as soon as possible.
@TatjanaDragune,
Thank you for your patience. It seems that Aspose.Slides is not able to check if a shape is a cameo yet.
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): SLIDESJAVA-39644
You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.
@TatjanaDragune,
With Aspose.Slides for Java 25.5, you will be able to check whether a shape is a cameo as shown below:
Presentation presentation = new Presentation("sample.pptx");
try {
ISlide slide = presentation.getSlides().get_Item(0);
IPictureFrame pictureFrame = (IPictureFrame) slide.getShapes().get_Item(0);
System.out.println("PictureFrame is Cameo: " + pictureFrame.isCameo());
} finally {
presentation.dispose();
}
Aspose.Slides for Java 25.5 will be published soon.
The issues you found earlier (filed as SLIDESJAVA-39644) have been resolved in Aspose.Slides for Java 25.5 (Maven, JAR).
You can check all fixes on the Release Notes page.
You can also find the latest version of our library on the Product Download page.