有人可以帮我吗?我正在尝试使用以下代码将图片插入到 powerpoint 中:
PPT.Shape sheetShape = slides[slideIndex].Shapes[shapeName];
...
slides[slideIndex].Shapes.AddPicture(fileName, MsoTriState.msoFalse, MsoTriState.msoTrue, sheetShape.Left, sheetShape.Top, sheetShape.Height, sheetShape.Width);
我的问题是,它会像这样移动插入的图片:http: //i.imgur.com/Ia2MVbk.png
所以两者都有相同的位置,但不是真的。我究竟做错了什么?
谢谢你。