Spire.Presentation starts to support save PowerPoint files to SVG file format

We are glad to announce that a release version of Spire.Presentation 2.7 is available today. On this new version of Spire.Presentation, our develop team add a new feature to save Presentation Slides to SVG (Scalable Vector Graphics). View the details as below:
New Feature:
- Supports to convert PPT to SVG.
Presentation ppt = new Presentation();
ppt.LoadFromFile(inputFile);
var svgBytes = ppt.SaveToSVG();
int len = svgBytes.Count;
for (int i = 0; i < len; i++)
{
FileStream fs = new FileStream(string.Format(outputFile + "{0}.svg", i), FileMode.Create);
byte[] bytes = svgBytes.Dequeue();
fs.Write(bytes, 0, bytes.Length);
ppt.Dispose();
}
To enjoy a better experience of Spire.Presentation 2.7, please download from the following URL:
http://www.e-iceblue.com/Download/download-presentation-for-net-now.html