ToPdf
内容
[
隐藏
]ToPdf(string, string)
将Presentation
转换为 PDF。
public static void ToPdf(string presPath, string outPath)
范围 | 类型 | 描述 |
---|---|---|
presPath | String | 输入呈现路径 |
outPath | String | 输出路径 |
例子
Convert.ToPdf("pres.pptx", "pres.pdf");
也可以看看
- class Convert
- 命名空间 Aspose.Slides.LowCode
- 部件 Aspose.Slides
ToPdf(string, string, IPdfOptions)
将Presentation
转换为 PDF。
public static void ToPdf(string presPath, string outPath, IPdfOptions options)
范围 | 类型 | 描述 |
---|---|---|
presPath | String | 输入呈现路径 |
outPath | String | 输出路径 |
options | IPdfOptions | 输出 PDF 选项 |
例子
Convert.ToPdf("pres.pptx", "pres.pdf", new PdfOptions{ Compliance = PdfCompliance.PdfUa });
也可以看看
- interface IPdfOptions
- class Convert
- 命名空间 Aspose.Slides.LowCode
- 部件 Aspose.Slides
ToPdf(Presentation, string)
将Presentation
转换为 PDF。
public static void ToPdf(Presentation pres, string outPath)
范围 | 类型 | 描述 |
---|---|---|
pres | Presentation | 输入表示 |
outPath | String | 输出路径 |
例子
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToPdf(pres, "output.pdf");
}
也可以看看
- class Presentation
- class Convert
- 命名空间 Aspose.Slides.LowCode
- 部件 Aspose.Slides
ToPdf(Presentation, string, IPdfOptions)
将Presentation
转换为 PDF。
public static void ToPdf(Presentation pres, string outPath, IPdfOptions options)
范围 | 类型 | 描述 |
---|---|---|
pres | Presentation | 输入表示 |
outPath | String | 输出路径 |
options | IPdfOptions | 输出 PDF 选项 |
例子
using (Presentation pres = new Presentation("input.pptx"))
{
Convert.ToPdf(pres, "output.pdf", new PdfOptions{ Compliance = PdfCompliance.PdfUa });
}
也可以看看
- class Presentation
- interface IPdfOptions
- class Convert
- 命名空间 Aspose.Slides.LowCode
- 部件 Aspose.Slides