我应该在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
。我找不到创建它的方法。你有什么建议吗?感谢