Hi, I was trying to conver slides to svg, and I found that there was some text and image disappeared.
Here is my code:
Presentation origPres = new Presentation("…/…/page.pptx");
ISlide slide = origPres.Slides[0];
MemoryStream ms = new MemoryStream();
slide.WriteAsSvg(ms);
System.IO.File.WriteAllBytes("…/…/output.svg", ms.ToArray());
There are pptx file and screenshot of the result svg file in the attachment,
Please help me fix this problem, Thank you
