ToSvg

ToSvg(string)

ConviertePresentation a SVG.

public static void ToSvg(string presPath)
ParámetroEscribeDescripción
presPathStringRuta de la presentación de entrada

Ejemplos

Convert.ToSvg("pres.pptx");

Ver también


ToSvg(string, GetOutPathCallback)

ConviertePresentation a SVG.

public static void ToSvg(string presPath, GetOutPathCallback getOutPath)
ParámetroEscribeDescripción
presPathStringRuta de la presentación de entrada
getOutPathGetOutPathCallbackDevolución de llamada que devuelve la ruta de salida SVG para cada diapositiva de la presentación

Ejemplos

Convert.ToSvg("pres.pptx", (slide, index) => $"pres_{index}-out.svg");

Ver también


ToSvg(Presentation, GetOutPathCallback)

ConviertePresentation a SVG.

public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath)
ParámetroEscribeDescripción
presPresentationPresentación de entrada
getOutPathGetOutPathCallback> Devolución de llamada que devuelve la ruta de salida SVG para cada diapositiva en la presentación

Ejemplos

using (Presentation pres = new Presentation("input.pptx"))    
{
    Convert.ToSvg(pres, (slide, index) => $"pres_{index}-out.svg");
} 

Ver también


ToSvg(Presentation, ISVGOptions)

ConviertePresentation a SVG.

public static void ToSvg(Presentation pres, ISVGOptions options)
ParámetroEscribeDescripción
presPresentationPresentación de entrada
optionsISVGOptionsOpciones de exportación SVG

Ejemplos

using (Presentation pres = new Presentation("input.pptx"))    
{
    Convert.ToSvg(pres, new SVGOptions { VectorizeText = true });
}  

Ver también


ToSvg(Presentation, GetOutPathCallback, ISVGOptions)

ConviertePresentation a SVG.

public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath, ISVGOptions options)
ParámetroEscribeDescripción
presPresentationPresentación de entrada
getOutPathGetOutPathCallbackDevolución de llamada que devuelve la ruta de salida SVG para cada diapositiva de la presentación
optionsISVGOptionsOpciones de exportación SVG

Ejemplos

using (Presentation pres = new Presentation("input.pptx"))    
{
    Convert.ToSvg(pres, (slide, index) => $"pres_{index}-out.svg", new SVGOptions { VectorizeText = true });
} 

Ver también