ToSvg

ToSvg(string)

konvertiertPresentation zu SVG.

public static void ToSvg(string presPath)
ParameterTypBeschreibung
presPathStringPfad der Eingabepräsentation

Beispiele

Convert.ToSvg("pres.pptx");

Siehe auch


ToSvg(string, GetOutPathCallback)

konvertiertPresentation zu SVG.

public static void ToSvg(string presPath, GetOutPathCallback getOutPath)
ParameterTypBeschreibung
presPathStringPfad der Eingabepräsentation
getOutPathGetOutPathCallbackRückruf, der den SVG-Ausgabepfad für jede Folie in der Präsentation zurückgibt

Beispiele

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

Siehe auch


ToSvg(Presentation, GetOutPathCallback)

konvertiertPresentation zu SVG.

public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath)
ParameterTypBeschreibung
presPresentationInput-Präsentation
getOutPathGetOutPathCallback>Callback, der den SVG-Ausgabepfad für jede Folie in der Präsentation zurückgibt

Beispiele

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

Siehe auch


ToSvg(Presentation, ISVGOptions)

konvertiertPresentation zu SVG.

public static void ToSvg(Presentation pres, ISVGOptions options)
ParameterTypBeschreibung
presPresentationInput-Präsentation
optionsISVGOptionsSVG-Exportoptionen

Beispiele

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

Siehe auch


ToSvg(Presentation, GetOutPathCallback, ISVGOptions)

konvertiertPresentation zu SVG.

public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath, ISVGOptions options)
ParameterTypBeschreibung
presPresentationInput-Präsentation
getOutPathGetOutPathCallbackRückruf, der den SVG-Ausgabepfad für jede Folie in der Präsentation zurückgibt
optionsISVGOptionsSVG-Exportoptionen

Beispiele

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

Siehe auch