2

我目前正在插入带有图片内容控件的图像,但似乎有一个明显的限制(根据控件的性质),只有 1 个图像。

如何使用 OpenXML SDK (2+) 在设定位置添加多个图像?

我确实尝试了 BookMarks,但这似乎不起作用,只会导致文档损坏。
我已经有相当多的代码正在构建现有文档,因此考虑到 mHtml 路由不是一个选项。
最后,我确实尝试了 OpenXML SDK 生产力工具,但仍然看不到如何在设定的位置插入多个图像。

4

1 回答 1

1

问题是图片内容控件都有一些指向相同“空白”图像的 id。您必须将每个图像的资源 ID 分配给每个内容控件的 blip.embed 属性

这篇文章为您提供了一种简短而有效的方法

Open XML – 通过标签名称设置多个图片内容控件,不会发疯

using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;

using A = DocumentFormat.OpenXml.Drawing;
using DW = DocumentFormat.OpenXml.Drawing.Wordprocessing;
using PIC = DocumentFormat.OpenXml.Drawing.Pictures;

// Select element containing picture control and get the blip element

Bitmap image = new Bitmap(@"F:insert_me.jpg");
SdtElement controlBlock = _mainDocumentPart.Document.Body
    .Descendants<SdtElement>()
        .Where
        (r => 
            r.SdtProperties.GetFirstChild<Tag>().Val == tagName
        ).SingleOrDefault();
// Find the Blip element of the content control.
A.Blip blip = controlBlock.Descendants<A.Blip>().FirstOrDefault();


// Add image and change embeded id.
ImagePart imagePart = _mainDocumentPart
    .AddImagePart(ImagePartType.Jpeg);
using (MemoryStream stream = new MemoryStream())
{
    image.Save(stream, ImageFormat.Jpeg);
    stream.Position = 0;
    imagePart.FeedData(stream);
}
blip.Embed = _mainDocumentPart.GetIdOfPart(imagePart);
于 2016-05-26T17:10:59.833 回答