使用DocumentFormat.OpenXml保存DocX

时间:2018-03-08 10:49:27

标签: c# docx

我应该在PDF中的Word文档中创建一个C#文件。我正在使用DocumentFormat.OpenXml创建或阅读

等文档
// create a new docx
using (var document = WordprocessingDocument.Create(
            "test.docx", WordprocessingDocumentType.Document))
{
    document.AddMainDocumentPart();
    document.MainDocumentPart.Document = new Document(
                new Body(new Paragraph(new Run(new Text("some text")))));
}

在本文档中,我必须添加图像,然后创建PDF。我找不到创建它的方法。你有什么建议吗?感谢

0 个答案:

没有答案