2016-07-29 68 views
2

我想在C#中使用DocX Library图像添加到一个Word文件。问题是我没有在网上找到任何东西。C#.NET DOCX添加图像到一个.docx文件

形势

我知道如何创建一个文件,我知道如何写在文件中的文本。该图书馆的文件可悲的是非常小。希望你能帮我!

+0

检查[这](https://social.msdn.microsoft.com/Forums/office/en-US/6c2ce499-0454-4b9e-b8d0-19d6350ae8dd/c-word-2010-paste-in-image-and-move-behind-text?forum = worddev)回答。 – Shakra

回答

6

的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(); 
} 
+0

谢谢你这工作:) – Blue