Shadow effect appeared

Hi,

After simple open/save routine, unexpected shadow effect appeared on the whole text in slide #2.

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-35210 has been logged in our issue tracking 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-35210) have been fixed in this update.


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

Hi,


I switched to Aspose.Slides for Java 16.4.0, but there’s still an shadow issue when I manipulate the text in the presentation. Please see the screenshot.

Here’s the code I use:

String presentationPath = “foro_barcelona_cohesion_01.pptx”;

InputStream inputStream = new FileInputStream(presentationPath);

Presentation presentation = new Presentation(inputStream);

inputStream.close();

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

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

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

IPortionCollection portions = paragraph.getPortions();

IPortion portion = portions.get_Item(0);

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

IPortionFormatEffectiveData effectiveData = portion
.createPortionFormatEffective();

// Make sure there’s no shadow effect applied on the portion
System.out.println(effectiveData.getEffectFormat()
.getInnerShadowEffect() == null);
System.out.println(effectiveData.getEffectFormat()
.getOuterShadowEffect() == null);

portions.clear();

IPortion newPortion = new Portion(“New Portion”);

portions.add(newPortion);

presentation
.save(“foro_barcelona_cohesion_01-aspose.pptx”,
SaveFormat.Pptx);

Can you check this?

Thanks,
Zeljko

Hi Zeljko,


I have shared the issue details in our issue tracking system. We will investigate the issue further on our end and will be sharing the feedback as soon as possible.

Best Regards,