2015-08-19 72 views
0
using word = Microsoft.Office.Interop.Word; 

如何在Word文檔的特定座標中添加圖像。如何使用C#在MSWord中的特定位置添加圖像?

我一直在尋找一段時間,但沒有成功找到這個問題的解決方案。

編輯 目前正在使用:

oDoc.Application.Selection.InlineShapes.AddPicture(@"C:\Users\MHD\Desktop\retouche.bmp"); 
    oDoc.Application.Selection.MoveDown(word.WdUnits.wdScreen, 2); 

問題:

enter image description here

需要什麼樣的:

enter image description here

所以圖像應該位於文檔最後一頁的右下角。要做到這一點

+1

如果你能向我們展示一些代碼,那將是非常甜蜜的。 –

+0

那裏我添加他們thaniks:D –

回答

0

一個方法是:

  • 打開Word文檔>添加一個名爲書籤: 「PicHere」

  • 然後check this link

1

而不是插入內聯形狀,位於文本內。你可能想要插入一個正常的形狀,它可以放置在文本上方的任何位置:

oDoc.Application.ActiveDocument.Shapes.AddPicture(
    @"C:\Users\MHD\Desktop\retouche.bmp", 
    null, null, 
    left, top, width, height) 
相關問題