ToPdf
Contenido
[
Ocultar
]ToPdf(string, string)
ConviertePresentation
a PDF.
public static void ToPdf(string presPath, string outPath)
Parámetro | Escribe | Descripción |
---|---|---|
presPath | String | Ruta de la presentación de entrada |
outPath | String | Ruta de salida |
Ejemplos
Convert.ToPdf("pres.pptx", "pres.pdf");
Ver también
- class Convert
- espacio de nombres Aspose.Slides.LowCode
- asamblea Aspose.Slides
ToPdf(string, string, IPdfOptions)
ConviertePresentation
a PDF.
public static void ToPdf(string presPath, string outPath, IPdfOptions options)
Parámetro | Escribe | Descripción |
---|---|---|
presPath | String | Ruta de la presentación de entrada |
outPath | String | Ruta de salida |
options | IPdfOptions | Opciones de PDF de salida |
Ejemplos
Convert.ToPdf("pres.pptx", "pres.pdf", new PdfOptions{ Compliance = PdfCompliance.PdfUa });
Ver también
- interface IPdfOptions
- class Convert
- espacio de nombres Aspose.Slides.LowCode
- asamblea Aspose.Slides
ToPdf(Presentation, string)
ConviertePresentation
a PDF.
public static void ToPdf(Presentation pres, string outPath)
Parámetro | Escribe | Descripción |
---|---|---|
pres | Presentation | Presentación de entrada |
outPath | String | Ruta de salida |
Ejemplos
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToPdf(pres, "output.pdf");
}
Ver también
- class Presentation
- class Convert
- espacio de nombres Aspose.Slides.LowCode
- asamblea Aspose.Slides
ToPdf(Presentation, string, IPdfOptions)
ConviertePresentation
a PDF.
public static void ToPdf(Presentation pres, string outPath, IPdfOptions options)
Parámetro | Escribe | Descripción |
---|---|---|
pres | Presentation | Presentación de entrada |
outPath | String | Ruta de salida |
options | IPdfOptions | Opciones de PDF de salida |
Ejemplos
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToPdf(pres, "output.pdf", new PdfOptions{ Compliance = PdfCompliance.PdfUa });
}
Ver también
- class Presentation
- interface IPdfOptions
- class Convert
- espacio de nombres Aspose.Slides.LowCode
- asamblea Aspose.Slides