itext7-dotnet word转pdf
时间: 2023-08-31 09:05:15 浏览: 168
Itext word转pdf
4星 · 用户满意度95%
使用iText7.NET可以将Word文档转换为PDF,以下是一个简单的示例代码:
```
using iText.Kernel.Pdf;
using iText.Layout;
using iText.Layout.Element;
using iText.Layout.Properties;
using Novacode;
// Load the Word document using DocX library
DocX document = DocX.Load("input.docx");
// Create a PDF document using iText7 library
PdfDocument pdf = new PdfDocument(new PdfWriter("output.pdf"));
// Create a document object for PDF
Document pdfDoc = new Document(pdf);
// Loop through all the paragraphs in the Word document
foreach (var p in document.Paragraphs)
{
// Create a new paragraph in the PDF document
Paragraph pdfP = new Paragraph();
// Set the font size and color for PDF paragraph
pdfP.SetFontSize(12);
pdfP.SetFontColor(DeviceGray.BLACK);
// Add the text from Word paragraph to PDF paragraph
pdfP.Add(p.Text);
// Add the PDF paragraph to the PDF document
pdfDoc.Add(pdfP);
}
// Close the PDF document
pdfDoc.Close();
```
需要注意的是,该示例代码只是将Word文档中的段落内容转换为PDF格式,如果Word文档中还包含其他内容(如表格、图片等),需要按照对应的方式进行处理。
阅读全文