.net core pdf免费转word
时间: 2023-08-01 17:10:51 浏览: 58
你可以使用Docotic.Pdf库来免费将PDF文件转换为Word文档。以下是示例代码:
```
using BitMiracle.Docotic.Pdf;
using System.IO;
// Load the PDF file
using (var pdf = new PdfDocument("input.pdf"))
{
// Create a new Word document
using (var docx = new DocX())
{
// Iterate through the pages of the PDF
for (int i = 0; i < pdf.PageCount; i++)
{
// Extract the text from the page
var pageText = pdf.Pages[i].SaveAsPlainText();
// Add the text to the Word document
docx.InsertParagraph(pageText);
}
// Save the Word document
docx.SaveAs("output.docx");
}
}
```
请注意,使用Docotic.Pdf库需要安装NuGet包“BitMiracle.Docotic.Pdf”,并且转换质量可能会有一些问题,需要根据具体的需求进行测试和评估。
阅读全文