ToSvg
内容
[
隐藏
]ToSvg(string)
将Presentation
转换为 SVG。
public static void ToSvg(string presPath)
范围 | 类型 | 描述 |
---|---|---|
presPath | String | 输入表示的路径 |
例子
Convert.ToSvg("pres.pptx");
也可以看看
- class Convert
- 命名空间 Aspose.Slides.LowCode
- 部件 Aspose.Slides
ToSvg(string, GetOutPathCallback)
将Presentation
转换为 SVG。
public static void ToSvg(string presPath, GetOutPathCallback getOutPath)
范围 | 类型 | 描述 |
---|---|---|
presPath | String | 输入表示的路径 |
getOutPath | GetOutPathCallback | 回调那个返回演示文稿中每张幻灯片的 SVG 输出路径 |
例子
Convert.ToSvg("pres.pptx", (slide, index) => $"pres_{index}-out.svg");
也可以看看
- delegate GetOutPathCallback
- class Convert
- 命名空间 Aspose.Slides.LowCode
- 部件 Aspose.Slides
ToSvg(Presentation, GetOutPathCallback)
将Presentation
转换为 SVG。
public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath)
范围 | 类型 | 描述 |
---|---|---|
pres | Presentation | 输入表示 |
getOutPath | GetOutPathCallback | > 返回的回调演示文稿中每张幻灯片的 SVG 输出路径 |
例子
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, (slide, index) => $"pres_{index}-out.svg");
}
也可以看看
- class Presentation
- delegate GetOutPathCallback
- class Convert
- 命名空间 Aspose.Slides.LowCode
- 部件 Aspose.Slides
ToSvg(Presentation, ISVGOptions)
将Presentation
转换为 SVG。
public static void ToSvg(Presentation pres, ISVGOptions options)
范围 | 类型 | 描述 |
---|---|---|
pres | Presentation | 输入表示 |
options | ISVGOptions | SVG 导出选项 |
例子
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, new SVGOptions { VectorizeText = true });
}
也可以看看
- class Presentation
- interface ISVGOptions
- class Convert
- 命名空间 Aspose.Slides.LowCode
- 部件 Aspose.Slides
ToSvg(Presentation, GetOutPathCallback, ISVGOptions)
将Presentation
转换为 SVG。
public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath, ISVGOptions options)
范围 | 类型 | 描述 |
---|---|---|
pres | Presentation | 输入表示 |
getOutPath | GetOutPathCallback | 返回 SVG 的回调演示文稿中每张幻灯片的输出路径 |
options | ISVGOptions | SVG 导出选项 |
例子
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, (slide, index) => $"pres_{index}-out.svg", new SVGOptions { VectorizeText = true });
}
也可以看看
- class Presentation
- delegate GetOutPathCallback
- interface ISVGOptions
- class Convert
- 命名空间 Aspose.Slides.LowCode
- 部件 Aspose.Slides