Create Slide as SVG Image
Contents
[
Hide
]
To generate an SVG image from any desired slide with Aspose.Slides.Pptx for .NET, please follow the steps below:
- Create an instance of the Presentation class.
- Obtain the desired slide’s reference by using its ID or index.
- Get the SVG image in a memory stream.
- Save the memory stream to file.
Example
//Instantiate a Presentation class that represents the presentation file
using (Presentation pres = new Presentation("Slides Test Presentation.pptx"))
{
//Access the second slide
ISlide sld = pres.Slides[1];
//Create a memory stream object
MemoryStream SvgStream = new MemoryStream();
//Generate SVG image of slide and save in memory stream
sld.WriteAsSvg(SvgStream);
SvgStream.Position = 0;
//Save memory stream to file
using (Stream fileStream = System.IO.File.OpenWrite("PresentatoinTemplate.svg"))
{
byte[] buffer = new byte[8 * 1024];
int len;
while ((len = SvgStream.Read(buffer, 0, buffer.Length)) > 0)
{
fileStream.Write(buffer, 0, len);
}
}
SvgStream.Close();
Download Running Example
Download Sample Code
For more details, visit Render Presentation Slides as SVG Images in .NET.