ToSvg

ToSvg(string)

convertitPresentation à SVG.

public static void ToSvg(string presPath)
ParamètreTaperLa description
presPathStringChemin de la présentation d’entrée

Exemples

Convert.ToSvg("pres.pptx");

Voir également


ToSvg(string, GetOutPathCallback)

convertitPresentation à SVG.

public static void ToSvg(string presPath, GetOutPathCallback getOutPath)
ParamètreTaperLa description
presPathStringChemin de la présentation d’entrée
getOutPathGetOutPathCallbackRappel qui renvoie le chemin de sortie SVG pour chaque diapositive de la présentation

Exemples

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

Voir également


ToSvg(Presentation, GetOutPathCallback)

convertitPresentation à SVG.

public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath)
ParamètreTaperLa description
presPresentationPrésentation des entrées
getOutPathGetOutPathCallback>Rappel qui renvoie le chemin de sortie SVG pour chaque diapositive de la présentation

Exemples

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

Voir également


ToSvg(Presentation, ISVGOptions)

convertitPresentation à SVG.

public static void ToSvg(Presentation pres, ISVGOptions options)
ParamètreTaperLa description
presPresentationPrésentation des entrées
optionsISVGOptionsOptions d’exportation SVG

Exemples

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

Voir également


ToSvg(Presentation, GetOutPathCallback, ISVGOptions)

convertitPresentation à SVG.

public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath, ISVGOptions options)
ParamètreTaperLa description
presPresentationPrésentation des entrées
getOutPathGetOutPathCallbackRappel qui renvoie le chemin de sortie SVG pour chaque diapositive de la présentation
optionsISVGOptionsOptions d’exportation SVG

Exemples

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

Voir également