ToSvg
Inhalt
[
Ausblenden
]ToSvg(string)
konvertiertPresentation
zu SVG.
public static void ToSvg(string presPath)
Parameter | Typ | Beschreibung |
---|---|---|
presPath | String | Pfad der Eingabepräsentation |
Beispiele
Convert.ToSvg("pres.pptx");
Siehe auch
- class Convert
- namensraum Aspose.Slides.LowCode
- Montage Aspose.Slides
ToSvg(string, GetOutPathCallback)
konvertiertPresentation
zu SVG.
public static void ToSvg(string presPath, GetOutPathCallback getOutPath)
Parameter | Typ | Beschreibung |
---|---|---|
presPath | String | Pfad der Eingabepräsentation |
getOutPath | GetOutPathCallback | Rückruf, der den SVG-Ausgabepfad für jede Folie in der Präsentation zurückgibt |
Beispiele
Convert.ToSvg("pres.pptx", (slide, index) => $"pres_{index}-out.svg");
Siehe auch
- delegate GetOutPathCallback
- class Convert
- namensraum Aspose.Slides.LowCode
- Montage Aspose.Slides
ToSvg(Presentation, GetOutPathCallback)
konvertiertPresentation
zu SVG.
public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath)
Parameter | Typ | Beschreibung |
---|---|---|
pres | Presentation | Input-Präsentation |
getOutPath | GetOutPathCallback | >Callback, der den SVG-Ausgabepfad für jede Folie in der Präsentation zurückgibt |
Beispiele
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, (slide, index) => $"pres_{index}-out.svg");
}
Siehe auch
- class Presentation
- delegate GetOutPathCallback
- class Convert
- namensraum Aspose.Slides.LowCode
- Montage Aspose.Slides
ToSvg(Presentation, ISVGOptions)
konvertiertPresentation
zu SVG.
public static void ToSvg(Presentation pres, ISVGOptions options)
Parameter | Typ | Beschreibung |
---|---|---|
pres | Presentation | Input-Präsentation |
options | ISVGOptions | SVG-Exportoptionen |
Beispiele
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, new SVGOptions { VectorizeText = true });
}
Siehe auch
- class Presentation
- interface ISVGOptions
- class Convert
- namensraum Aspose.Slides.LowCode
- Montage Aspose.Slides
ToSvg(Presentation, GetOutPathCallback, ISVGOptions)
konvertiertPresentation
zu SVG.
public static void ToSvg(Presentation pres, GetOutPathCallback getOutPath, ISVGOptions options)
Parameter | Typ | Beschreibung |
---|---|---|
pres | Presentation | Input-Präsentation |
getOutPath | GetOutPathCallback | Rückruf, der den SVG-Ausgabepfad für jede Folie in der Präsentation zurückgibt |
options | ISVGOptions | SVG-Exportoptionen |
Beispiele
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToSvg(pres, (slide, index) => $"pres_{index}-out.svg", new SVGOptions { VectorizeText = true });
}
Siehe auch
- class Presentation
- delegate GetOutPathCallback
- interface ISVGOptions
- class Convert
- namensraum Aspose.Slides.LowCode
- Montage Aspose.Slides