C# .NET DocX 将图像添加到 .docx 文件

C# .NET DocX Add an Image to a .docx File

我想使用 DocX Library 在 C# 中将图像添加到 Word 文件。问题是我在网上找不到任何东西。

情况

我知道如何创建文件,我知道如何在文件中写入文本。遗憾的是,图书馆的文档非常小。希望你能帮助我!

DocX 库包含 sample 演示如何向文档添加图片:

var myImageFullPath = "C:\tmp\sample.png";
using (DocX document = DocX.Create(@"docs\HelloWorldAddPictureToWord.docx"))
{
    // Add an image into the document.    
    Image image = document.AddImage(myImageFullPath);

    // Create a picture (A custom view of an Image).
    Picture picture = image.CreatePicture();

    // Insert a new Paragraph into the document.
    Paragraph title = document.InsertParagraph().Append("This is a test for a picture").FontSize(20).Font(new FontFamily("Comic Sans MS"));
    title.Alignment = Alignment.center;

    // Insert a new Paragraph into the document.
    Paragraph p1 = document.InsertParagraph();

    // Append content to the Paragraph
    p1.AppendLine("Check out this picture ").AppendPicture(picture).Append(" its funky don't you think?");
    p1.AppendLine();

    p1.AppendPicture(picture);

    // Save this document.
    document.Save();
}