itextsharp word转pdf
时间: 2023-08-08 16:07:00 浏览: 171
iTextSharp 文件转 pdf
4星 · 用户满意度95%
iTextSharp是一个开源的PDF生成库,可以使用它将Word文档转换为PDF。以下是一个简单的示例代码,可以实现Word转PDF的功能:
```c#
using System;
using System.IO;
using iTextSharp.text;
using iTextSharp.text.pdf;
using Microsoft.Office.Interop.Word;
namespace WordToPDF
{
class Program
{
static void Main(string[] args)
{
string inputFile = "input.docx";
string outputFile = "output.pdf";
// 创建Word文档对象
Application word = new Application();
Document doc = word.Documents.Open(inputFile);
// 将Word文档对象转换为PDF
doc.ExportAsFixedFormat(outputFile, WdExportFormat.wdExportFormatPDF);
// 关闭Word文档对象
doc.Close();
// 释放Word对象
word.Quit();
}
}
}
```
这个程序需要引用iTextSharp和Microsoft.Office.Interop.Word两个库。需要注意的是,这个程序只能在安装了Microsoft Office的Windows系统中运行。
阅读全文