getOuterShadowEffect() returns null

Hi,


In the attached presentation, almost every slide contain some text with a shadow effect applied. When I try to get shadow effect values via code, getOuterShadowEffect() returns null.

Here’s the code I use:

String presentationPath = “cito_ouderavond_2016.pptx”;

InputStream inputStream = new FileInputStream(presentationPath);

Presentation presentation = new Presentation(inputStream);

inputStream.close();

ISlide slide = presentation.getSlides().get_Item(0);

IAutoShape shape = (IAutoShape) slide.getShapes().get_Item(0);

IParagraph paragraph = shape.getTextFrame().getParagraphs().get_Item(0);

IPortion portion = paragraph.getPortions().get_Item(1);

IPortionFormatEffectiveData effectiveData = portion
.createPortionFormatEffective();

System.out.println(portion.getText());

System.out.println(effectiveData.getEffectFormat()
.getOuterShadowEffect() == null);

slide = presentation.getSlides().get_Item(1);

shape = (IAutoShape) slide.getShapes().get_Item(1);

paragraph = shape.getTextFrame().getParagraphs().get_Item(0);

portion = paragraph.getPortions().get_Item(0);

effectiveData = portion
.createPortionFormatEffective();

System.out.println(portion.getText());

System.out.println(effectiveData.getEffectFormat()
.getOuterShadowEffect() == null);

Here’s the output:

Informatie avond Cito eindtoets
true
Wanneer?
true

Can you check this?

Thanks,
Zeljko
Hi Zeljko,

Thank you for posting.

I have observed your comments and worked with the presentation file shared by you. I have been able to reproduce the issue. A ticket with ID SLIDESJAVA-35313 has been logged in our issue management system to further investigate and resolve the issue.This thread has been linked with the issue so that you may be notified automatically as soon as the issue will be resolved.

We are sorry for your inconvenience,

The issues you have found earlier (filed as SLIDESJAVA-35313) have been fixed in this update.


This message was posted using Notification2Forum from Downloads module by Aspose Notifier.