ToPdf
Inhalt
[
Ausblenden
]ToPdf(string, string)
konvertiertPresentation
zu PDF.
public static void ToPdf(string presPath, string outPath)
Parameter | Typ | Beschreibung |
---|---|---|
presPath | String | Pfad der Eingabepräsentation |
outPath | String | Ausgangspfad |
Beispiele
Convert.ToPdf("pres.pptx", "pres.pdf");
Siehe auch
- class Convert
- namensraum Aspose.Slides.LowCode
- Montage Aspose.Slides
ToPdf(string, string, IPdfOptions)
konvertiertPresentation
zu PDF.
public static void ToPdf(string presPath, string outPath, IPdfOptions options)
Parameter | Typ | Beschreibung |
---|---|---|
presPath | String | Pfad der Eingabepräsentation |
outPath | String | Ausgangspfad |
options | IPdfOptions | PDF-Ausgabeoptionen |
Beispiele
Convert.ToPdf("pres.pptx", "pres.pdf", new PdfOptions{ Compliance = PdfCompliance.PdfUa });
Siehe auch
- interface IPdfOptions
- class Convert
- namensraum Aspose.Slides.LowCode
- Montage Aspose.Slides
ToPdf(Presentation, string)
konvertiertPresentation
zu PDF.
public static void ToPdf(Presentation pres, string outPath)
Parameter | Typ | Beschreibung |
---|---|---|
pres | Presentation | Input-Präsentation |
outPath | String | Ausgangspfad |
Beispiele
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToPdf(pres, "output.pdf");
}
Siehe auch
- class Presentation
- class Convert
- namensraum Aspose.Slides.LowCode
- Montage Aspose.Slides
ToPdf(Presentation, string, IPdfOptions)
konvertiertPresentation
zu PDF.
public static void ToPdf(Presentation pres, string outPath, IPdfOptions options)
Parameter | Typ | Beschreibung |
---|---|---|
pres | Presentation | Input-Präsentation |
outPath | String | Ausgangspfad |
options | IPdfOptions | PDF-Ausgabeoptionen |
Beispiele
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToPdf(pres, "output.pdf", new PdfOptions{ Compliance = PdfCompliance.PdfUa });
}
Siehe auch
- class Presentation
- interface IPdfOptions
- class Convert
- namensraum Aspose.Slides.LowCode
- Montage Aspose.Slides