Hi,
We have arequirement where we have to stitch multiple PPTs into a single PPT. Around 50 PPTs have to be merged as a single PPT. we have used CloneSlide method, where we iterate to all the slides in 50 PPTs and merge them. But it takes around 3 mins to finish that process where as to merge 50 PDFs it takes only few seconds.
Functions that are used in the loop are :
1) Creating instance of Parent presentation to which the slides of other PPT have to be appended. In this case from the 50 individual PPTs, the first one is considered as the parent. and a loop rund for 49 times to merge the slides of other PPT with the parent PPT.
2) CloneSlide method to attach the slides of 49 ppts to the parent ppt.
3) WriteFile method to save the PPT at the end of every iteration.
Is there a method to stitch the PPTs without having performance degradation? We are using Apose.Slides for .Net version 8.3.0.0
Thanks,
AnuradhaV