将Office Interop图像附件转换为OpenXML

时间:2019-06-05 11:23:24

标签: c# ms-word openxml office-interop openxml-sdk

将添加远程图像到Word文档中的操作从Interop转换为OpenXML和DocumentFormat类。

我们目前使用Office Interop来打开/编辑/保存并发送word,excel和ppt文档,但现在需要移至OpenXML以使用“ DocumentFormat”类创建这些文档。除了在文档中添加对外部图像的引用的要求外,大多数情况都没有实现。

当前,我们使用以下内容包括外部参考:-

if (f.Type == WdFieldType.wdFieldIncludePicture)
{
   Range code = f.Code;
   code.Text = "INCLUDEPICTURE \\d \"https://" + Domain + "/" + UID + "\" \\* MERGEFORMATINET";
   f.UpdateSource();
}

但是无法弄清楚如何使用DocumentFormat类执行相同的操作。

对此表示感谢。

谢谢。

0 个答案:

没有答案