ToSvg
Contents
[
Hide
]ToSvg(string)
Converts Presentation
to SVG.
public static void ToSvg(string presPath)
Parameter | Type | Description |
---|---|---|
presPath | String | Path of the input presentation |
Examples
Convert.ToSvg("pres.pptx");
See Also
- class Convert
- namespace Aspose.Slides.LowCode
- assembly Aspose.Slides
ToSvg(string, GetOutPathCallback)
Converts Presentation
to SVG.
public static void ToSvg(string presPath, GetOutPathCallback getOutPath)
Parameter | Type | Description |
---|---|---|
presPath | String | Path of the input presentation |
getOutPath | GetOutPathCallback | Callback that returns the SVG output path for each slide in the presentation |
Examples
Convert.ToSvg("pres.pptx", (slide, index) => $"pres_{index}-out.svg");
See Also
- delegate GetOutPathCallback
- class Convert
- namespace Aspose.Slides.LowCode
- assembly Aspose.Slides
ToSvg(Presentation, GetOutPathCallback)
Converts Presentation
to SVG.
public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath)
Parameter | Type | Description |
---|---|---|
pres | Presentation | Input presentation |
getOutPath | GetOutPathCallback | >Callback that returns the SVG output path for each slide in the presentation |
Examples
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, (slide, index) => $"pres_{index}-out.svg");
}
See Also
- class Presentation
- delegate GetOutPathCallback
- class Convert
- namespace Aspose.Slides.LowCode
- assembly Aspose.Slides
ToSvg(Presentation, ISVGOptions)
Converts Presentation
to SVG.
public static void ToSvg(Presentation pres, ISVGOptions options)
Parameter | Type | Description |
---|---|---|
pres | Presentation | Input presentation |
options | ISVGOptions | SVG export options |
Examples
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, new SVGOptions { VectorizeText = true });
}
See Also
- class Presentation
- interface ISVGOptions
- class Convert
- namespace Aspose.Slides.LowCode
- assembly Aspose.Slides
ToSvg(Presentation, GetOutPathCallback, ISVGOptions)
Converts Presentation
to SVG.
public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath, ISVGOptions options)
Parameter | Type | Description |
---|---|---|
pres | Presentation | Input presentation |
getOutPath | GetOutPathCallback | Callback that returns the SVG output path for each slide in the presentation |
options | ISVGOptions | SVG export options |
Examples
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, (slide, index) => $"pres_{index}-out.svg", new SVGOptions { VectorizeText = true });
}
See Also
- class Presentation
- delegate GetOutPathCallback
- interface ISVGOptions
- class Convert
- namespace Aspose.Slides.LowCode
- assembly Aspose.Slides