Convert the PPTX presentation to SVG format.
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);