ToSvg

ToSvg(string)

Presentation转换为 SVG。

public static void ToSvg(string presPath)
范围类型描述
presPathString输入表示的路径

例子

Convert.ToSvg("pres.pptx");

也可以看看


ToSvg(string, GetOutPathCallback)

Presentation转换为 SVG。

public static void ToSvg(string presPath, GetOutPathCallback getOutPath)
范围类型描述
presPathString输入表示的路径
getOutPathGetOutPathCallback回调那个返回演示文稿中每张幻灯片的 SVG 输出路径

例子

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

也可以看看


ToSvg(Presentation, GetOutPathCallback)

Presentation转换为 SVG。

public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath)
范围类型描述
presPresentation输入表示
getOutPathGetOutPathCallback> 返回的回调演示文稿中每张幻灯片的 SVG 输出路径

例子

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

也可以看看


ToSvg(Presentation, ISVGOptions)

Presentation转换为 SVG。

public static void ToSvg(Presentation pres, ISVGOptions options)
范围类型描述
presPresentation输入表示
optionsISVGOptionsSVG 导出选项

例子

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

也可以看看


ToSvg(Presentation, GetOutPathCallback, ISVGOptions)

Presentation转换为 SVG。

public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath, ISVGOptions options)
范围类型描述
presPresentation输入表示
getOutPathGetOutPathCallback返回 SVG 的回调演示文稿中每张幻灯片的输出路径
optionsISVGOptionsSVG 导出选项

例子

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

也可以看看