.net使用npoi把word转为pdf文件代码示例,可以使用其他的组件
时间: 2023-02-07 10:51:09 浏览: 317
使用poi根据模版生成word文档并转换成PDF文件
可以使用 Aspose.Words for .NET 库将 Word 文档转换为 PDF。这是一个第三方库,你可以使用 NuGet 包管理器安装它。
下面是使用 Aspose.Words 转换 Word 文档为 PDF 的示例代码:
```
using Aspose.Words;
string inputFilePath = @"C:\Input.docx";
string outputFilePath = @"C:\Output.pdf";
// Load the document from the input file.
Document doc = new Document(inputFilePath);
// Save the document in PDF format.
doc.Save(outputFilePath, SaveFormat.Pdf);
```
如果你想使用其他的组件,Spire.Doc for .NET 和 NReco.PdfGenerator 也可以将 Word 文档转换为 PDF。
阅读全文