背景:我正在尝试使用 c# 和 Interop 生成一个 word 文档。我成功地插入了表格、页眉、页脚、图表……大部分工作正常。作为下一步,我希望将其转换为 pdf。
流程调整:由于我使用的是 word 2011 和 word 2007(安装 saveaspdf 插件后),我使用“另存为”将文档保存为 pdf,然后文件类型为 pdf。
提出的问题:我已使用以下代码成功地将 pdf 嵌入到我的文档中。
Object oIconLabel = new FileInfo(file_path).Name;
Object oFileDesignInfo = file_path;
Object oClassType = "AcroExch.Document.7";
Object oTrue = true;
Object oFalse = false;
Object oMissing = System.Reflection.Missing.Value;
Object index = 0;
Range r = d.Bookmarks.get_Item(ref eod).Range;
r.InlineShapes.AddOLEObject(
ref oClassType, ref oFileDesignInfo, ref oFalse, ref oTrue, ref oMissing,
ref index, ref oIconLabel, ref oMissing);
这里 d 是 Document 对象。现在,当我尝试将此 word 文档另存为 pdf 时,使用
d.SaveAs(ref filename, ref filetype, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
pdf正在生成。但是我嵌入的文档没有嵌入到生成的 pdf 中。而是只显示一个图标。
如何将文档嵌入到 pdf 中?我们通常如何处理这种情况。如果问题不清楚,请告诉我。