DocumentFormat.OpenXml将图像添加到word doc

时间:2011-05-13 16:39:10

标签: c# asp.net openxml openxml-sdk

我正在使用openXml SDK创建一个简单的单词doc。 它到目前为止工作。 现在,我如何将文件系统中的图像添加到此文档?我不在乎文档中的位置只是因为它就在那里。 谢谢! 这是我到目前为止所拥有的。

 string fileName = "proposal"+dealerId +Guid.NewGuid().ToString()+".doc";
       string filePath = @"C:\DWSApplicationFiles\Word\" + fileName;
       using (WordprocessingDocument wordDoc = WordprocessingDocument.Create(filePath, WordprocessingDocumentType.Document, true))
       {
           MainDocumentPart mainPart = wordDoc.AddMainDocumentPart();

           mainPart.Document = new Document();
           //create the body
           Body body = new Body();
           DocumentFormat.OpenXml.Wordprocessing.Paragraph p = new DocumentFormat.OpenXml.Wordprocessing.Paragraph();
           DocumentFormat.OpenXml.Wordprocessing.Run runParagraph = new DocumentFormat.OpenXml.Wordprocessing.Run();         

           DocumentFormat.OpenXml.Wordprocessing.Text text_paragraph = new DocumentFormat.OpenXml.Wordprocessing.Text("This is a test");
           runParagraph.Append(text_paragraph);
           p.Append(runParagraph);
           body.Append(p);
           mainPart.Document.Append(body);
           mainPart.Document.Save();              
       }

3 个答案:

答案 0 :(得分:0)

此代码对我有用:http://msdn.microsoft.com/en-us/library/bb497430.aspx

您的代码将图像添加到docx包中,但是为了在文档中看到它,您必须在document.xml中声明它,即将其链接到您的物理图像。这就是你必须编写msdn链接中列出的长函数的原因。

我的问题是如何为图片添加效果(编辑,裁剪,背景删除)。 如果您知道如何做到这一点,我将非常感谢您的帮助:)

答案 1 :(得分:0)

这是一种比上面msdn页面中描述的方法更简单的方法,此代码在C ++ / CLI中,但是您当然可以在C#中编写等效的方法

WordprocessingDocument^ doc = WordprocessingDocument::Open(doc_name, true);
FileStream^ img_fs = gcnew FileStream(image_path, FileMode::Open);
ImagePart^ image_part = doc->MainDocumentPart->AddImagePart(ImagePartType::Jpeg);
image_part->FeedData(img_fs);
Run^ img_run = doc->MainDocumentPart->Document->Body->AppendChild(gcnew Paragraph())->AppendChild(gcnew Run());
Vml::ImageData^ img_data = img_run->AppendChild(gcnew Picture())->AppendChild(gcnew Vml::Shape())->AppendChild(gcnew Vml::ImageData());
img_data->RelationshipId = doc->MainDocumentPart->GetIdOfPart(image_part);
doc->Close();

答案 2 :(得分:-1)

如何:使用Open XML API将图像部件添加到Office Open XML包

http://msdn.microsoft.com/en-us/library/bb497430(v=office.12).aspx

public static void AddImagePart(string document, string fileName)
{
    using (WordprocessingDocument wordDoc = WordprocessingDocument.Open(document, true))
    {
        MainDocumentPart mainPart = wordDoc.MainDocumentPart;

        ImagePart imagePart = mainPart.AddImagePart(ImagePartType.Jpeg);

        using (FileStream stream = new FileStream(fileName, FileMode.Open))
        {
            imagePart.FeedData(stream);
        }
    }
}