Hello,
we are having issue with aspose-slides java 22.9 version(tested also 23.1 and got same result) on windows10.
We are converting attached slide document to images and while converting second slide it gets stuck. It seems that problem is in embedded word document in there - even if there is not much data it still takes so much time.
There is code sample how we are doing that:
Presentation presentation = new Presentation(inputStream);
StreamSupport.stream(presentation.getSlides().spliterator(), false)
.map(slide -> parseSlide(slide))
....
private BufferedImage parseSlide(ISlide slide) throws IOException {
...
return slide.getThumbnail(renderingOptions, new Dimension(
(int) width,
(int) height
))
}
test-embedded-word.zip (86.8 KB)