ToSvg
Contenido
[
Ocultar
]ToSvg(string)
ConviertePresentation
a SVG.
public static void ToSvg(string presPath)
Parámetro | Escribe | Descripción |
---|---|---|
presPath | String | Ruta de la presentación de entrada |
Ejemplos
Convert.ToSvg("pres.pptx");
Ver también
- class Convert
- espacio de nombres Aspose.Slides.LowCode
- asamblea Aspose.Slides
ToSvg(string, GetOutPathCallback)
ConviertePresentation
a SVG.
public static void ToSvg(string presPath, GetOutPathCallback getOutPath)
Parámetro | Escribe | Descripción |
---|---|---|
presPath | String | Ruta de la presentación de entrada |
getOutPath | GetOutPathCallback | Devolución de llamada que devuelve la ruta de salida SVG para cada diapositiva de la presentación |
Ejemplos
Convert.ToSvg("pres.pptx", (slide, index) => $"pres_{index}-out.svg");
Ver también
- delegate GetOutPathCallback
- class Convert
- espacio de nombres Aspose.Slides.LowCode
- asamblea Aspose.Slides
ToSvg(Presentation, GetOutPathCallback)
ConviertePresentation
a SVG.
public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath)
Parámetro | Escribe | Descripción |
---|---|---|
pres | Presentation | Presentación de entrada |
getOutPath | GetOutPathCallback | > Devolución de llamada que devuelve la ruta de salida SVG para cada diapositiva en la presentación |
Ejemplos
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, (slide, index) => $"pres_{index}-out.svg");
}
Ver también
- class Presentation
- delegate GetOutPathCallback
- class Convert
- espacio de nombres Aspose.Slides.LowCode
- asamblea Aspose.Slides
ToSvg(Presentation, ISVGOptions)
ConviertePresentation
a SVG.
public static void ToSvg(Presentation pres, ISVGOptions options)
Parámetro | Escribe | Descripción |
---|---|---|
pres | Presentation | Presentación de entrada |
options | ISVGOptions | Opciones de exportación SVG |
Ejemplos
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, new SVGOptions { VectorizeText = true });
}
Ver también
- class Presentation
- interface ISVGOptions
- class Convert
- espacio de nombres Aspose.Slides.LowCode
- asamblea Aspose.Slides
ToSvg(Presentation, GetOutPathCallback, ISVGOptions)
ConviertePresentation
a SVG.
public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath, ISVGOptions options)
Parámetro | Escribe | Descripción |
---|---|---|
pres | Presentation | Presentación de entrada |
getOutPath | GetOutPathCallback | Devolución de llamada que devuelve la ruta de salida SVG para cada diapositiva de la presentación |
options | ISVGOptions | Opciones de exportación SVG |
Ejemplos
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, (slide, index) => $"pres_{index}-out.svg", new SVGOptions { VectorizeText = true });
}
Ver también
- class Presentation
- delegate GetOutPathCallback
- interface ISVGOptions
- class Convert
- espacio de nombres Aspose.Slides.LowCode
- asamblea Aspose.Slides