ToPdf
Contenu
[
Cacher
]ToPdf(string, string)
convertitPresentation
au format PDF.
public static void ToPdf(string presPath, string outPath)
Paramètre | Taper | La description |
---|---|---|
presPath | String | Chemin de la présentation d’entrée |
outPath | String | Chemin de sortie |
Exemples
Convert.ToPdf("pres.pptx", "pres.pdf");
Voir également
- class Convert
- espace de noms Aspose.Slides.LowCode
- Assemblée Aspose.Slides
ToPdf(string, string, IPdfOptions)
convertitPresentation
au format PDF.
public static void ToPdf(string presPath, string outPath, IPdfOptions options)
Paramètre | Taper | La description |
---|---|---|
presPath | String | Chemin de la présentation d’entrée |
outPath | String | Chemin de sortie |
options | IPdfOptions | Options de sortie PDF |
Exemples
Convert.ToPdf("pres.pptx", "pres.pdf", new PdfOptions{ Compliance = PdfCompliance.PdfUa });
Voir également
- interface IPdfOptions
- class Convert
- espace de noms Aspose.Slides.LowCode
- Assemblée Aspose.Slides
ToPdf(Presentation, string)
convertitPresentation
au format PDF.
public static void ToPdf(Presentation pres, string outPath)
Paramètre | Taper | La description |
---|---|---|
pres | Presentation | Présentation des entrées |
outPath | String | Chemin de sortie |
Exemples
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToPdf(pres, "output.pdf");
}
Voir également
- class Presentation
- class Convert
- espace de noms Aspose.Slides.LowCode
- Assemblée Aspose.Slides
ToPdf(Presentation, string, IPdfOptions)
convertitPresentation
au format PDF.
public static void ToPdf(Presentation pres, string outPath, IPdfOptions options)
Paramètre | Taper | La description |
---|---|---|
pres | Presentation | Présentation des entrées |
outPath | String | Chemin de sortie |
options | IPdfOptions | Options de sortie PDF |
Exemples
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToPdf(pres, "output.pdf", new PdfOptions{ Compliance = PdfCompliance.PdfUa });
}
Voir également
- class Presentation
- interface IPdfOptions
- class Convert
- espace de noms Aspose.Slides.LowCode
- Assemblée Aspose.Slides