using Aspose.Word.Table;
using Aspose.Word;
using Aspose.Word.Drawing;
Document doc = new Document(path);//path为文档路径
List<Table> collection = doc.GetChildNodes(NodeType.Table,true).Cast<Table>.ToList();
for(int i=0;i<collection.Count;i++)
{
Table table=collectiong[i];
Cell cell = table.Rows[a].Cell[b];//a行b列
NodeCollection nodes = cell.GetChildNodes(NodeType.Shape,true);
foreach(Node node in nodes)
{
if(node.HasImage)
node.ImageData.Save(filename);//filename为图片存储完整路径
}
}