将openXML图像从一个文档复制到另一个文档 [英] copying openXML image from one document to another

查看:194
本文介绍了将openXML图像从一个文档复制到另一个文档的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

We have conditional Footers that INCLUDETEXT based on the client:

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

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

Depending on our document, there could be a varying amount of IF/ELSE, and these all work correctly for merging the correct files in the correct place.

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

However, some of these documents may have client specific images/branding, which also need to be copied across from the INCLUDETEXT file.

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

Below is the method that is called to replace any Picture elements that exist in the IEnumerable<Run> that is copied from the Source document to the Target document.

该图像可以很好地复制,但是它似乎没有更新我的Picture中的RID或将记录添加到.XML.Rels文件中. (我什至尝试添加ForEach来添加到所有页眉和页脚中,以查看这是否有所不同.

The image is copied fine, however it doesn't appear to update the RID in my Picture or add a record into the .XML.Rels files. (I even tried adding a ForEach to add to all the headers and footers, to see if this made any difference.

    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);
            }
        }
    }

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

Has anyone come across this issue before?

OpenXML SDK文档似乎很少见.

It appears the OpenXML SDK documentation is a 'little' sparse...

推荐答案

最新反应,但是该线程对我很有帮助.这是我复制带有图像的文档的解决方案

Late reaction but this thread helped me a lot to got it working. Here my solution for copying a document with images

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

CopyImage:

CopyImage:

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);
}

CreateNew:

CreateNew:

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;
}

这篇关于将openXML图像从一个文档复制到另一个文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆