openxml find drawing
List<Drawing> sdtElementDrawing = wordDoc.MainDocumentPart.Document.Descendants<Drawing>()
.Where(element => element.Descendants<DocProperties>().Any(
prop => prop.Title.Value.ToUpper().Contains("IMAGE")
)).ToList();