Hi,
May I ask how to find and replace an image…
I needed to replace the image with a text “Your Logo Here”.
Thanks
Joebet
Hi,
Hi Joebet,
DrawingML dml = (DrawingML)doc.GetChildNodes(NodeType.DrawingML, true)[0];
dml.ImageData.SetImage(Image.FromFile(MyDir + "Aspose.Words.jpg"));
doc.Save(MyDir + @“out.docx”);
Thanks you for the fast support dude!