Hi
We noticed the following:
If we, after opening and modifying a pptx file, try to save it as pdf file, the resulting pdf file has lost most, if not all linefeed characters.
PresentationEx pres = new PresentationEx(“template.pptx”);
…
lots of code
…
pres.SaveFile(“result.pdf”, Aspose.Slides.Export.SaveFormat.Pdf);
**************************
On the other hand, if we first save the file as pptx, then reopen it and save it as pdf file, conversion works fine.
PresentationEx pres = new PresentationEx(“template.pptx”);
…
lots of code
…
pres.SaveFile(“result.pptx”, Aspose.Slides.Export.SaveFormat.Pptx);
PresentationEx tmp = new PresentationEx(“result.pptx”);
tmp.SaveFile(“result.pdf”, Aspose.Slides.Export.SaveFormat.Pdf);
Is the latter the intended way of work, or is there a bug in the conversion?
BR
Olavi
PS: Any news on shape copy and group shapes?
Hi Olavi,