用OpenXML中的图像替换文本持有者

时间:2013-10-03 12:37:20

标签: c# xml xml-parsing openxml openxml-sdk

下面我有一些代码,可以使用OpenXML在文档的末尾插入图像。 我需要做的是尝试在文档中找到名为[Image Holder]的项目,并将其替换为我正在传递的图像。

以下是将其添加到文档末尾的当前代码

        var element =
             new Drawing(
                 new DW.Inline(
                     new DW.Extent() { Cx = 990000L, Cy = 792000L },
                     new DW.EffectExtent()
                     {
                         LeftEdge = 0L,
                         TopEdge = 0L,
                         RightEdge = 0L,
                         BottomEdge = 0L
                     },
                     new DW.DocProperties()
                     {
                         Id = (UInt32Value)1U,
                         Name = "NGSignature"
                     },
                     new DW.NonVisualGraphicFrameDrawingProperties(
                         new A.GraphicFrameLocks() { NoChangeAspect = true }),
                     new A.Graphic(
                         new A.GraphicData(
                             new PIC.Picture(
                                 new PIC.NonVisualPictureProperties(
                                     new PIC.NonVisualDrawingProperties()
                                     {
                                         Id = (UInt32Value)0U,
                                         Name = "NGSignature.jpg"
                                     },
                                     new PIC.NonVisualPictureDrawingProperties()),
                                 new PIC.BlipFill(
                                     new A.Blip(
                                         new A.BlipExtensionList(
                                             new A.BlipExtension()
                                             {
                                                 Uri =
                                                   "{28A0092B-C50C-407E-A947-70E740481C1C}"
                                             })
                                     )
                                     {
                                         Embed = relationship_id,
                                         CompressionState =
                                         A.BlipCompressionValues.Print
                                     },
                                     new A.Stretch(
                                         new A.FillRectangle())),
                                 new PIC.ShapeProperties(
                                     new A.Transform2D(
                                         new A.Offset() { X = 0L, Y = 0L },
                                         new A.Extents() { Cx = 990000L, Cy = 792000L }),
                                     new A.PresetGeometry(
                                         new A.AdjustValueList()
                                     ) { Preset = A.ShapeTypeValues.Rectangle }))
                         ) { Uri = "http://schemas.openxmlformats.org/drawingml/2006/picture" })
                 )
                 {
                     DistanceFromTop = (UInt32Value)0U,
                     DistanceFromBottom = (UInt32Value)0U,
                     DistanceFromLeft = (UInt32Value)0U,
                     DistanceFromRight = (UInt32Value)0U,
                     EditId = "50D07946"
                 });

        word_doc.MainDocumentPart.Document.Body.AppendChild(new DocumentFormat.OpenXml.Wordprocessing.Paragraph(new DocumentFormat.OpenXml.Wordprocessing.Run(element)));

更新 的 好吧,我在OpenXML工具中打开了该文件,发现以下行包含我需要在XML文件中替换的数据。

<w:r>
    <w:rPr>
      <w:sz w:val="20" />
    </w:rPr>
    <w:instrText xml:space="preserve"> REF NG_MACRO "HOLDER" "3fd95b6f-4c63-42fb-ba2e-dc6d57975c57" </w:instrText>
  </w:r>

  <w:r>
    <w:rPr>
      <w:sz w:val="20" />
    </w:rPr>
    <w:t xml:space="preserve">{HOLDER}</w:t>
  </w:r>

第二部分是我打开文档时看到的内容。 第一部分我不确定,但创建它的应用程序将它放入。

为了正确地做到这一点,我猜测需要移除1部分,然后用图像部分替换第2部分。

1 个答案:

答案 0 :(得分:4)

要使用给定图像替换文本持有者,请使用以下步骤:

  1. 搜索文字占位符。
  2. 确定文本占位符的父级
  3. 在文本占位符后插入图像(Drawing元素)。
  4. 删除文本文件夹。
  5. 以下代码实现了上述步骤:

    // Search for text holder
    Text textPlaceHolder = word_doc.MainDocumentPart.Document.Body.Descendants<Text>()
        .Where((x) => x.Text == "$image_tag$").First();
    
    if (textPlaceHolder == null)
    {
      Console.WriteLine("Text holder not found!");      
    }
    else
    {
      var parent = textPlaceHolder.Parent;
    
      if(!(parent is Run))  // Parent should be a run element.
      {
        Console.Out.WriteLine("Parent is not run");
      }
      else
      {
        // Insert image (the image created with your function) after text place holder.        
        textPlaceHolder.Parent.InsertAfter<Drawing>(element, textPlaceHolder);
        // Remove text place holder.
        textPlaceHolder.Remove();
      }
    }
    

    您也可以使用内容占位符(SdtElement)而不是简单的文本占位符。