3

我们有INCLUDETEXT基于客户的条件页脚:

IF $CLIENT = "CLIENT1" "{INCLUDETEXT "CLIENT1HEADER.DOCX"}" ""

根据我们的文档,可能会有不同数量的IF/ELSE,并且这些都可以正常工作以将正确的文件合并到正确的位置。

但是,其中一些文档可能具有客户特定的图像/品牌,也需要从INCLUDETEXT文件中复制。

下面是调用来替换从源文档复制到目标文档Picture中存在的任何元素的方法。IEnumerable<Run>

图像复制得很好,但它似乎没有更新我的 RIDPicture或将记录添加到 .XML.Rels 文件中。(我什至尝试添加一个ForEach以添加到所有页眉和页脚,看看这是否有什么不同。

    private void InsertImagesFromOldDocToNewDoc(WordprocessingDocument source, WordprocessingDocument target, IEnumerable<Picture> pics)
    {
        IEnumerable<Picture> imageElements = source.MainDocumentPart.Document.Descendants<Run>().Where(x => x.Descendants<Picture>().FirstOrDefault() != null).Select(x => x.Descendants<Picture>().FirstOrDefault());

        foreach (Picture pic in pics) //the new pics
        {
            Picture oldPic = imageElements.Where(x => x.Equals(pic)).FirstOrDefault();

            if (oldPic != null)
            {
                string imageId = "";

                ImageData shape = oldPic.Descendants<ImageData>().FirstOrDefault();

                ImagePart p = source.MainDocumentPart.GetPartById(shape.RelationshipId) as ImagePart;

                ImagePart newPart = target.MainDocumentPart.AddPart<ImagePart>(p);

                newPart.FeedData(p.GetStream());

                shape.RelId = target.MainDocumentPart.GetIdOfPart(newPart);
                string relPart = target.MainDocumentPart.CreateRelationshipToPart(newPart);
            }
        }
    }

有没有人遇到过这个问题?

看来 OpenXML SDK 文档“有点”稀疏......

4

2 回答 2

6

迟到的反应,但这个线程帮助我很多,让它工作。这是我复制带有图像的文档的解决方案

private static void CopyDocumentWithImages(string path)
{
    if (!Path.GetFileName(path).StartsWith("~$"))
    {
        using (var source = WordprocessingDocument.Open(path, false))
        {
            using (var newDoc = source.CreateNew(path.Replace(".docx", "-images.docx")))
            {
                foreach (var e in source.MainDocumentPart.Document.Body.Elements())
                {
                    var clonedElement = e.CloneNode(true);
                    clonedElement.Descendants<DocumentFormat.OpenXml.Drawing.Blip>()
                        .ToList().ForEach(blip =>
                        {
                            var newRelation = newDoc.CopyImage(blip.Embed, source);
                            blip.Embed = newRelation;
                        });
                    clonedElement.Descendants<DocumentFormat.OpenXml.Vml.ImageData>().ToList().ForEach(imageData =>
                    {
                        var newRelation = newDoc.CopyImage(imageData.RelationshipId, source);
                        imageData.RelationshipId = newRelation;
                    });
                    newDoc.MainDocumentPart.Document.Body.AppendChild(clonedElement);
                }
                newDoc.Save();
            }
        }
    }
}

复制图片:

public static string CopyImage(this WordprocessingDocument newDoc, string relId, WordprocessingDocument org)
{
    var p = org.MainDocumentPart.GetPartById(relId) as ImagePart;
    var newPart = newDoc.MainDocumentPart.AddPart(p);
    newPart.FeedData(p.GetStream());
    return newDoc.MainDocumentPart.GetIdOfPart(newPart);
}

创建新的:

public static WordprocessingDocument CreateNew(this WordprocessingDocument org, string name)
{
    var doc = WordprocessingDocument.Create(name, WordprocessingDocumentType.Document);
    doc.AddMainDocumentPart();
    doc.MainDocumentPart.Document = new Document(new Body());
    using (var streamReader = new StreamReader(org.MainDocumentPart.ThemePart.GetStream()))
    using (var streamWriter = new StreamWriter(doc.MainDocumentPart.AddNewPart<ThemePart>().GetStream(FileMode.Create)))
    {
        streamWriter.Write(streamReader.ReadToEnd());
    }
    using (var streamReader = new StreamReader(org.MainDocumentPart.StyleDefinitionsPart.GetStream()))
    using (var streamWriter = new StreamWriter(doc.MainDocumentPart.AddNewPart<StyleDefinitionsPart>().GetStream(FileMode.Create)))
    {
        streamWriter.Write(streamReader.ReadToEnd());
    }
    return doc;
}
于 2018-02-19T16:33:57.837 回答
1

斯图尔特,

当我尝试将编号样式从一个文档复制到另一个文档时,我遇到了同样的问题。

我认为 Word 在内部所做的是,每当一个对象从一个文档复制到另一个文档时,该对象的 ID 就不会复制到新文档中,而是会为其分配一个新 ID。

复制图像后,您必须获取 ID,然后在使用图像的任何地方替换它。

我希望这会有所帮助,这就是我使用的副本编号样式。

干杯

于 2013-10-16T09:45:28.953 回答