ToPdf

ToPdf(string, string)

Presentation转换为 PDF。

public static void ToPdf(string presPath, string outPath)
范围类型描述
presPathString输入呈现路径
outPathString输出路径

例子

Convert.ToPdf("pres.pptx", "pres.pdf");

也可以看看


ToPdf(string, string, IPdfOptions)

Presentation转换为 PDF。

public static void ToPdf(string presPath, string outPath, IPdfOptions options)
范围类型描述
presPathString输入呈现路径
outPathString输出路径
optionsIPdfOptions输出 PDF 选项

例子

Convert.ToPdf("pres.pptx", "pres.pdf", new PdfOptions{ Compliance = PdfCompliance.PdfUa });

也可以看看


ToPdf(Presentation, string)

Presentation转换为 PDF。

public static void ToPdf(Presentation pres, string outPath)
范围类型描述
presPresentation输入表示
outPathString输出路径

例子

using (Presentation pres = new Presentation("input.pptx"))    
{
    Convert.ToPdf(pres, "output.pdf");
} 

也可以看看


ToPdf(Presentation, string, IPdfOptions)

Presentation转换为 PDF。

public static void ToPdf(Presentation pres, string outPath, IPdfOptions options)
范围类型描述
presPresentation输入表示
outPathString输出路径
optionsIPdfOptions输出 PDF 选项

例子

using (Presentation pres = new Presentation("input.pptx"))    
{
    Convert.ToPdf(pres, "output.pdf", new PdfOptions{ Compliance = PdfCompliance.PdfUa });
} 

也可以看看