As per project requirement we need to convert images from word document into bitmap object. To achieve this we tried to convert inlineshape object from Microsoft.Office.Inte
Try this.
foreach (InlineShape shape in d.InlineShapes) { if (shape != null) { shape.Range.Select(); d.ActiveWindow.Selection.Copy(); Bitmap bitmap = new Bitmap(Clipboard.GetImage()); } }