Presentation to SVG Converter for .NET

Convert the PPTX presentation to SVG format.

Convert PPTX to SVG

Converting presentations to SVG enables embedding scalable slides in web pages with high-quality visuals. The Slidize.Plugins library allows custom SVG exports, including image scaling and hidden slide handling, making it ideal for sharing presentations online while preserving formatting.

  using Slidize;

  var options = new SvgConverterOptions
  {
      VectorizeText = true
  };

  PresentationToSvgConverter.Process("Color.pptx", "output.svg", options);