[BUG] Large Slides Downloading Incorrectly

Good afternoon!


I’m running Apose.slides java 1.6.0_65 and running into an issue with wide slides. Uploaded slides are being resized to the standard dimensions but the content remains the same. I’ve attached example input and output.

Has this issue been corrected in more recent versions of the Aspose API?

Thank you kindly in advance for your support.

Best,
Arkady Sokolov

Hi Arkady Sokolov,


I have observed the issue shared by you and it seems you are performing slide cloning from source to destination presentation. However, your source presentation slide size is different than the default desired presentation size. You need to please try using the following sample code before cloning the slides from one to another presentation.

Dimension2D slideSize = srcPres.getSlideSize().getSize();
destPres.getSlideSize().setSize(slideSize);

Many Thanks,